mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-08 18:49:07 +01:00
7 lines
128 B
Python
7 lines
128 B
Python
def countBits(n):
|
|
count = 0
|
|
while n > 0:
|
|
if n % 2 == 1:
|
|
count += 1
|
|
n //= 2
|
|
return count
|