// Source : https://leetcode.cn/problems/count-largest-group/
// Date : 2022-5-10
class Solution {
public:
bool isPowerOfTwo(int n) {
for(int i = 0;i < 34;++i)
{
if(pow(2, i) == n)
return true;
}
return false;
}
};



