摘要: 二话不说,直接上代码: 1 class Solution(object): 2 def isPalindrome(self, x): 3 """ 4 :type x: int 5 :rtype: bool 6 """ 7 x2 = str(x) 8 if x2 == x2[::-... 阅读全文
posted @ 2019-07-21 21:35 hungry5656 阅读(167) 评论(0) 推荐(0) 编辑