class Solution: def isPowerOfTwo(self, n: int) -> bool: return n != 0 and n & (n - 1) == 0
best_time_buy_sell_stock
best_time_buy_sell_stock_ii
climb_statirs