class Solution:
def isPalindrome(self, x: int) -> bool:
str_x = str(x)
if str_x[0] == "+":
str_x = str_x[1:]
if str_x == str_x[::-1]:
return True
else:
return False
9,回文数
最新推荐文章于 2022-08-09 20:59:01 发布