231. Power of Two
LeetCode 231. Power of Two
Description
Input: n = 1
Output: true
Explanation: 20 = 1Input: n = 16
Output: true
Explanation: 24 = 16Input: n = 3
Output: falseTags
Solution
Complexity
Code
Last updated