You are viewing a single comment's thread. Return to all comments →
if name == 'main':
n = int(input().strip()) binary = bin(n)[2:] max_consecutive = max(len(ones) for ones in binary.split('0')) print(max_consecutive)
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 →
if name == 'main':