Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 284 Bytes

4的幂.md

File metadata and controls

13 lines (12 loc) · 284 Bytes
function isPowerOfFour(n) {
  /* 
  如果 n 为 4 的幂 则满足
   1. n > 0
   2. n 肯定是 2 的幂
   3. n 对 3 取余余数一定为 1
  */
  return n > 0 && (n & (n - 1)) === 0 && n % 3 === 1;
}