一、题目
二、示例
三、代码
class Solution:
def isPalindrome(self , x: int) -> bool:
if x < 0:
return False
y = str(x)[::-1]
if str(x) == y:
return True
return False
四、算法说明
将整数逆序转换,然后判断是否回文数字。
胡萝卜
2022年8月7日20:21:11
我不知道将去向何方,但我已在路上! |
---|
时光匆匆,虽未曾谋面,却相遇于斯,实在是莫大的缘分,感谢您的到访 ! |