[leetcode]342. Power of Four
problem
solution1:loop;
class Solution { public: bool isPowerOfFour(int num) { if(num<1) return false; while(num%4==0) { num /= 4; } return num==1; } };
solution
class Solution { public: bool isPowerOfFour(int num) { return ( num>0 && !(num&(num-1)) && ((num-1)%3==0) ); //return ( num>0 && (num&(num-1))==0 && ((num-1)%3==0) );//ok. //return ( num>0 && (num&(num-1)==0) && ((num-1)%3==0) );//err. } };
ref:
1. Leetcode_342_Power of Four;
2. GrandYang;
end
各美其美,美美与共,不和他人作比较,不对他人有期待,不批判他人,不钻牛角尖。
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/
心正意诚,做自己该做的事情,做自己喜欢做的事情,安静做一枚有思想的技术媛。
版权声明,转载请注明出处:https://www.cnblogs.com/happyamyhope/