Power of Four

Given an integer n, return true if it is a power of four. Otherwise, return false.

An integer n is a power of four if there exists an integer x such that n == 4^x.

Follow up: Could you solve it without loops/recursion?

Example 1
Inputn = 16
Outputtrue
Since 16 equals 4^2, it is a power of four.
Example 2
Inputn = 5
Outputfalse
There is no integer x such that 5 equals 4^x.

Constraints

  • -2^31 <= n <= 2^31 - 1

Asked at 7 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate