mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
13 lines
222 B
Kotlin
13 lines
222 B
Kotlin
class Solution {
|
|
fun isPowerOfThree(n: Int): Boolean {
|
|
if (n < 1) {
|
|
return false
|
|
}
|
|
|
|
var x = n
|
|
while (x % 3 == 0) {
|
|
x /= 3
|
|
}
|
|
return x == 1
|
|
}
|
|
}
|