Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Bin solution in Clear category for Binary Count by Adrian_W
def checkio(number):
a=format(number,'b')
size=0
for i in a:
if i=='1':
size+=1
return size
#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
assert checkio(4) == 1
assert checkio(15) == 4
assert checkio(1) == 1
assert checkio(1022) == 9
Oct. 11, 2016
Comments: