Mid/SeniorMath

Check if Number is a Sum of Powers of Three

Given an integer n, return true if it is possible to represent n as the sum of distinct powers of three. Otherwise, return false.

An integer y is a power of three if there exists an integer x such that y == 3^x.

Example 1
Inputn = 12
Outputtrue
12 can be represented as 3^1 + 3^2.
Example 2
Inputn = 91
Outputtrue
91 can be represented as 3^0 + 3^2 + 3^4.

Constraints

  • 1 <= n <= 10^7

Asked at 4 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