給你一個整數(shù) x ,如果 x 是一個回文整數(shù)咙咽,返回 true ;否則淤年,返回 false 钧敞。
回文數(shù)是指正序(從左向右)和倒序(從右向左)讀都是一樣的整數(shù)。例如麸粮,121 是回文溉苛,而 123 不是。
class Solution:
def isPalindrome(self, x: int) -> bool:
if x < 0:
return False
return list(str(x)) == list(str(x))[::-1]