LeetCode 九、判斷一個整數是不是迴文數。迴文數是指正序(從左向右)和倒序(從右向左)讀都是同樣的整數。

class Solution:
    def isPalindrome(self, x: int) -> bool:
        a = x
        if a<0:
            return False
        else:
            num = 0
            while(a!=0):
                temp = a%10
                a = a//10
                num = num*10+temp
            if num==x:
                return True
            else:
                return False
相關文章
相關標籤/搜索