Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Binary Count by aieozn
def checkio(number):
a=number;
wynik='';
suma=0;
if a==0:
wynik=0;
while(a!=0):
wynik=wynik+str(a%2);
a=a//2;
for i in range(len(wynik)):
if wynik[i]=='1':
suma=suma+1;
return suma
#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
Nov. 27, 2016