Power of Three
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 == 3<sup>x</sup>.
LeetCode Problem - 326
class Solution {
// This method checks if a gi...
perfinsights.hashnode.dev1 min read