Leetcode 9.回文数(Python3)

9.回文数

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

示例 1:

输入: 121
输出: true

示例 2:

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

示例 3:

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

进阶:

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

solution1:将整数转为字符串

#palindrome-number
class Solution1(object):
    def isPalindrome(self, x):
        return x >= 0 and str(x) == str(x)[::-1]

if __name__ == '__main__':
     test = 121
     test2 = -121
     test3 = 10
     print(Solution1().isPalindrome(test))
     print(Solution1().isPalindrome(test2))
     print(Solution1().isPalindrome(test3))

solution2:不将整数转为字符串

#palindrome-number
class Solution2(object):
    def isPalindrome(self, x):
        if x < 0:
            return False
        x_reversed = 0
        original_x = x
        while x > 0:
            x_reversed = x_reversed * 10 + x % 10
            x //= 10
        return original_x == x_reversed

if __name__ == '__main__':
     test = 121
     test2 = -121
     test3 = 10
     print(Solution2().isPalindrome(test))
     print(Solution2().isPalindrome(test2))
     print(Solution2().isPalindrome(test3))

链接:

https://leetcode-cn.com/problems/palindrome-number/description/

猜你喜欢

转载自blog.csdn.net/qq_38575545/article/details/84898863