leetcode9.回文数

题目:

判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。

示例1:

输入: 121
输出: true

示例2:

输入: -121
输出: false
解释: 从左向右读, 为 -121 。 从右向左读, 为 121- 。因此它不是一个回文数。

示例3:

输入: 10
输出: false
解释: 从右向左读, 为 01 。因此它不是一个回文数。

进阶:

你能不将整数转为字符串来解决这个问题吗?

拿着题就想"作弊":

class Solution:
    def isPalindrome(self, x: int) -> bool:
        return str(x)[::-1] == str(x)

or

class Solution:
    def isPalindrome(self, x: int) -> bool:
        return list(str(x)) == list(reversed(str(x)))

如果不用字符串:

class Solution:
    def isPalindrome(self, x: int) -> bool:
        if x < 0 :
            return False
        org, rev = x, 0 # org为原始的数,rev为反转的数
        while x > 0:
            rev = 10 * rev + x % 10 # 反转过程
            x //= 10
        return rev == org

你可能感兴趣的:(leetcode9.回文数)