🌈 搜索
📅  最后修改于: 2022-03-11 14:44:49.505000             🧑  作者: Mango
bool isPowerOfTwo(int n) { return n > 0 && !(n&(n-1)); }