Number of 1 Bits

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.

Follow up: If this function is called many times, how would you optimize it?

Example 1
Inputn = 11
Output3
The input binary string 1011 has a total of three set bits.
Example 2
Inputn = 128
Output1
The input binary string 10000000 has a total of one set bit.

Constraints

  • 1 <= n <= 2^31 - 1

Asked at 11 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate