Number of 1 Bits

IF
AlgoAxiomStaff Engineers
JSTS
Easy20 mins

Given a positive integer n, write a function that returns the number of set bits in its binary representation (also known as the [Hamming weight](https://en.wikipedia.org/wiki/Hamming_weight)).

Examples

Example 1:

Input: n = 11

Output: 3

Explanation: The input binary string 1011 has a total of three set bits.

Example 2:

Input: n = 128

Output: 1

Explanation: The input binary string 10000000 has a total of one set bit.

Example 3:

Input: n = 2147483645

Output: 30

Explanation: The input binary string 01111111111111111111111111111101 has a total of thirty set bits.

Constraints

  • 1 <= n <= 2^31 - 1
Source: Bitwise Manipulation pattern — AlgoAxiom
JavaScript
Test Case 1
root = [1, 2, 3]
Test Case 2
root = [1, 2, 3, 4, 5]
Idle