标签:指正 sel image span info 回文 style com img
判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。
示例 1:
输入: 121
输出: true
示例 2:
输入: -121
输出: false
解释: 从左向右读, 为 -121 。 从右向左读, 为 121- 。因此它不是一个回文数。
示例 3:
输入: 10
输出: false
解释: 从右向左读, 为 01 。因此它不是一个回文数。
解题:
1 class Solution: 2 def isPalindrome(self, x): 3 """ 4 :type x: int 5 :rtype: bool 6 """ 7 if str(x)[::-1] == str(x): 8 return True 9 else: 10 return False
运行截图:
标签:指正 sel image span info 回文 style com img
原文地址:https://www.cnblogs.com/steven1995/p/10383554.html