aboutsummaryrefslogtreecommitdiff
path: root/works/solutions/leetcode/cpp/231.cpp
blob: 8861e0937047134ffcd5b9d9955b9817b7e9f025 (plain)
1
2
3
4
5
6
7
8
9
10
#include <bitset>

class Solution {
public:
    bool isPowerOfTwo(int n) {
        if (n <= 0) return false;
        std::bitset<sizeof(n) * 8> bits(n);
        return bits.count() == 1;
    }
};