Given an integer n, return true if it is a power of three. Otherwise, return false.
An integer n is a power of three, if there exists an integer x such that n == 3x.
Follow up: Could you solve it without loops/recursion?
1 | class Solution { |
Given an integer n, return true if it is a power of three. Otherwise, return false.
An integer n is a power of three, if there exists an integer x such that n == 3x.
Follow up: Could you solve it without loops/recursion?
1 | class Solution { |