Power of Two

Share my LeetCode answer


231. Power of Two

Given an integer, write a function to determine if it is a power of two.

class Solution {
    public boolean isPowerOfTwo(int n) {
        return (n > 0 && 1073741824 % n == 0);
    }
}