1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/kt/power-of-three.kt

14 lines
222 B
Kotlin
Raw Normal View History

class Solution {
fun isPowerOfThree(n: Int): Boolean {
if (n < 1) {
return false
}
var x = n
while (x % 3 == 0) {
x /= 3
}
return x == 1
}
}