Skip to content

Instantly share code, notes, and snippets.

@lsongdev
Created October 25, 2017 06:22
Show Gist options
  • Select an option

  • Save lsongdev/3aa87720394e776cbd2b503d7fd5255c to your computer and use it in GitHub Desktop.

Select an option

Save lsongdev/3aa87720394e776cbd2b503d7fd5255c to your computer and use it in GitHub Desktop.
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