Easy
Given an integer n, return true if it is a power of four (i.e., n == 4^x for some non-negative integer x).
n
true
n == 4^x
Input: n = 16 Output: true
Input: n = 5 Output: false
Input: n = 1 Output: true