Easy
Given a non-negative integer n, return the number of set bits (1s) in its binary representation (its Hamming weight).
n
Input: n = 11 Output: 3 Explanation: 11 = 1011 in binary.
Input: n = 128 Output: 1