摘要: class Solution(object): def isPalindrome(self, x): pop = 0 y = x if x < 0: print("false") elif x >= 0 : while x != 0 : i = x % 10 x = x // 10 pop = po 阅读全文
posted @ 2019-08-23 19:18 黎黎黎黎 阅读(680) 评论(0) 推荐(0) 编辑