326. Power of Three
LeetCode 326. Power of Three
Description
Input: n = 27
Output: trueInput: n = 0
Output: falseInput: n = 9
Output: trueTags
Solution
Complexity
Code
Reference
Last updated