Class Solution
- java.lang.Object
-
- g1701_1800.s1780_check_if_number_is_a_sum_of_powers_of_three.Solution
-
public class Solution extends Object
1780 - Check if Number is a Sum of Powers of Three.Medium
Given an integer
n, returntrueif it is possible to representnas the sum of distinct powers of three. Otherwise, returnfalse.An integer
yis a power of three if there exists an integerxsuch thaty == 3x.Example 1:
Input: n = 12
Output: true
Explanation: 12 = 31 + 32
Example 2:
Input: n = 91
Output: true
Explanation: 91 = 30 + 32 + 34
Example 3:
Input: n = 21
Output: false
Constraints:
1 <= n <= 107
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancheckPowersOfThree(int n)
-