题解 | #牛的回文编号#
牛的回文编号
https://www.nowcoder.com/practice/f864e31a772240f1b4310fbdc27fad48
题目考察的知识点
回文串、字符串翻转
题目解答方法的文字分析
题目要求找出一个字符串是否是回文串,只需要将数字翻转后判断是否与原来相同即可。
python翻转字符串的两种方法:
//第一种
str='niuke'
print(str[::-1])
//第二种
str='niuke'
print(''.join(reversed(str)))
本题解析所用的编程语言
python
完整且正确的编程代码
class Solution:
def isPalindrome(self , x: int) -> bool:
# write code hered
return int(str(x)[::-1]) == x