Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 234 Bytes

Power_of_Two.md

File metadata and controls

10 lines (8 loc) · 234 Bytes

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);
    }
}