[leetcode] Power of Two
Power of Two Given an integer, write a function to determine if it is a power of two. //can n be negative? //negative number is definitely not a power of two //1 is power of 2 //0 is not //1 2 4 8 16 32 64 .. class Solution { […]