12 lines
389 B
Python
12 lines
389 B
Python
def checkio(number: int) -> int:
|
|
return list(str(bin(number))).count('1')
|
|
|
|
|
|
# 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
|
|
print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")
|