Сила 2
bool isPowerOfTwo(int n) {
return n > 0 && !(n&(n-1));
}
Ugliest Unicorn
bool isPowerOfTwo(int n) {
return n > 0 && !(n&(n-1));
}