不知道哪里出问题了
感觉写的好像是对的
class Solution:
def isPalindrome(self, x: int) -> bool:
list1 = []
for i in str(x):
list1.append(i)
if list1 == list1.reverse():
return True
else:
return False