Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Binary Count by wrak
def checkio(number):
n = number
s=""
c=0
while(n>0.9):
if n%2==0:
s=s+"0"
n//=2
if n%2==1:
c+=1
n//=2
print(s)
return c
#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. 27, 2017