You are viewing a single comment's thread. Return to all comments →
import math import os import random import re import sys if __name__ == '__main__': n = int(input().strip()) binary=bin(n)[2:] ones=binary.split('0') max_ones=max(len(group) for group in ones) print(max_ones)
Seems like cookies are disabled on this browser, please enable them to open this website
Day 10: Binary Numbers
You are viewing a single comment's thread. Return to all comments →