Last active
September 19, 2018 15:50
-
-
Save frankchang0125/6ee136bd9a2c86dfa58353653e3a435f to your computer and use it in GitHub Desktop.
338. Counting Bits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Decimal | Binary | Num of 1s | |
---|---|---|---|
0 | 0 | 0 | |
1 | 01 | 1 | |
2 | 10 | 1 | |
3 | 11 | 2 | |
4 | 100 | 1 | |
5 | 101 | 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment