Python LeetCode(9.回文数)

Python LeetCode(9.回文数)

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

示例 1:

输入: 121
输出: true

示例 2:

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

示例 3:

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

进阶:

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

Solution 1:(利用字符串倒序与原字符串作比较)

class Solution_1(object):
    def isPalindrome(self, x):
        """
        :type x: int
        :rtype: bool
        """
        str_num = str(x)
        str_reverse_num = str_num[-1::-1]
        
        if str_reverse_num == str_num:
            return True
        else:
            return False
solution_1 = Solution_1()
print(solution_1.isPalindrome(12345654321))
True

Solution 2:(进阶:不转换为字符串,直接对数字操作,同样地,取余操作)

class Solution_2(object):
    def isPalindrome(self, x):
        """
        :type x: int
        :rtype: bool
        """
        reverse_num = 0
        num = abs(x)
        
        while num != 0:
            temp = num % 10
            reverse_num = reverse_num * 10 + temp
            num = num // 10
        
        if x < 0:
            return False
        
        if reverse_num == x:
            return True
        else:
            return False
solution_2 = Solution_2()
print(solution_2.isPalindrome(14141))
True

你可能感兴趣的:(Python,LeetCode)