Created
November 25, 2015 21:53
-
-
Save iburlakov/621cfae521ee2aaaeca9 to your computer and use it in GitHub Desktop.
Revisions
-
iburlakov created this gist
Nov 25, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ // calculate amount of 1 digits in given number function calc(num) { var digits = 0; do { if (num & 1) { digits++; } num = num >>> 1 } while (num != 0); return digits; }