9. 回文数
方法一
class Solution(object): def isPalindrome(self, x): """ :type x: int :rtype: bool """ if x < 0: return False x = str(x) for i in range(len(x)//2): if x[i] != x[len(x)-i-1]: return False return True
本文共 348 字,大约阅读时间需要 1 分钟。
class Solution(object): def isPalindrome(self, x): """ :type x: int :rtype: bool """ if x < 0: return False x = str(x) for i in range(len(x)//2): if x[i] != x[len(x)-i-1]: return False return True
转载于:https://www.cnblogs.com/xiao-xue-di/p/10291914.html