0231. Power of Two
Description
**Input:** n = 1
**Output:** true
**Explanation:** 20 = 1**Input:** n = 16
**Output:** true
**Explanation:** 24 = 16**Input:** n = 3
**Output:** false**Input:** n = 4
**Output:** trueac
Last updated
**Input:** n = 1
**Output:** true
**Explanation:** 20 = 1**Input:** n = 16
**Output:** true
**Explanation:** 24 = 16**Input:** n = 3
**Output:** false**Input:** n = 4
**Output:** trueLast updated
**Input:** n = 5
**Output:** false