Created
October 25, 2017 06:22
-
-
Save lsongdev/3aa87720394e776cbd2b503d7fd5255c to your computer and use it in GitHub Desktop.
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
| var c = 0; | |
| var n = 50; | |
| while(n) n = (c++, n&(n-1)); | |
| while(n) (n >>= 1 & 1) && c++; | |
| console.log(c); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment