Skip to content

Instantly share code, notes, and snippets.

@RP-3
Created June 8, 2020 07:39
Show Gist options
  • Save RP-3/bdc2db72e4fc92775c296b4168630cba to your computer and use it in GitHub Desktop.
Save RP-3/bdc2db72e4fc92775c296b4168630cba to your computer and use it in GitHub Desktop.
/**
* @param {number} n
* @return {boolean}
*/
var isPowerOfTwo = function(n) {
if(n<=0) return false;
n&=(n-1);
return n === 0;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment