Skip to content

Latest commit

 

History

History

bit-counting

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
  • Completed at: 2023-02-10T06:49:19.404Z

  • Completed languages: python, javascript

  • Tags: Bits, Algorithms

  • Rank: 6 kyu

Description

Write a function that takes an integer as input, and returns the number of bits that are equal to one in the binary representation of that number. You can guarantee that input is non-negative.

Example: The binary representation of 1234 is 10011010010, so the function should return 5 in this case