231. Power of Two
Given an integer, write a function to determine if it is a power of two.
Solution: Bit Op
class Solution(object):
def isPowerOfTwo(self, n):
"""
:type n: int
:rtype: bool
"""
return n > 0 and n & (n - 1) == 0
Lessons:
0b1000 & 0b0111 == 0