326. Power of Three
https://leetcode.com/problems/power-of-three/
Problem
Given an integer, write a function to determine if it is a power of three.
Example 1:
Example 2:
Example 3:
Example 4:
Follow up: Could you do it without using any loop / recursion?
Solution
1. Recursive
2. Base Conversion
3. Logarithm
#math
#important
Last updated
Was this helpful?