0191: Number of 1 Bits
class Solution:
def hammingWeight(self, n):
count = 0
while n:
count += n % 2
n //= 2
return count
class Solution:
def hammingWeight(self, n):
count = 0
while n:
count += n % 2
n //= 2
return count