231-power-of-two

DevGod
Vtuber
bool isPowerOfTwo(int n) { signed long I = 1; signed long max = pow(2,31)-1; for(I = 1; I < max; I=I*2){ if(n == I){return true;} } return false;}
/** * @param {number} n * @return {boolean} */var isPowerOfTwo = function(n) { for(let I = 1; I<2**31-1; I*=2){ if(n == I){return true;} } return false;};