挂〜代〜码〜
class Solution:
def isPalindrome(self, x):
"""
:type x: int
:rtype: bool
"""
temp = str(x)[::-1]
if(temp == str(x)):
return True
else:
return False
基本思路:
参数转字符串类型然后切片翻转,比较的时候注意是同类型比较就行
PS:饶了我吧..我真的不知道有啥基本思路......嘤嘤嘤(╥╯^╰╥)
举目不过千里愿为无穷尽