mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
14 lines
222 B
Kotlin
14 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
|
||
|
}
|
||
|
}
|