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