python 1行代码解决算法 回文数 问题(多一行都不行)
class Solution:
def isPalindrome(self, x: int) -> bool:
#int转换成字符串,反转字符串 进行比较 OK
return str(x)==str(x)[::-1]
class Solution:
def isPalindrome(self, x: int) -> bool:
#int转换成字符串,反转字符串 进行比较 OK
return str(x)==str(x)[::-1]