摘要: class Solution: def isPalindrome(self, x: int) -> bool: x_str=str(x) x_str_len=len(x_str) if x_str_len==1: return True count=0 for i in range(x_str_le 阅读全文
posted @ 2023-12-29 14:59 Junior_bond 阅读(7) 评论(0) 推荐(0)