Recca Chao 的 gitHub page

推廣網站開發,包含 Laravel 和 Kotlin 後端撰寫、自動化測試、讀書心得等。Taiwan Kotlin User Group 管理員。

View on GitHub

Kotlin Leetcode - 9. Palindrome Number

題目連接

class Solution {
    fun isPalindrome(x: Int): Boolean {
    }
}

解題思路

這題類似於 7. Reverse Integer

先將數字轉換成字串

然後再進行判斷

Kotlin 參考解答

點擊展開解答
class Solution {
    fun isPalindrome(x: Int): Boolean {
        if (x < 0) {
            return false
        }
        return x.toString().reversed() == x.toString()
    }
}

也可以用 when 改寫成單一表達式

class Solution {  
    fun isPalindrome(x: Int) = when {  
        x < 0 -> false  
        else -> x.toString().reversed() == x.toString()  
    }  
}

回到 leetcode 列表