LeetCode3——回文数

LeetCode3——回文数

前言:

LeetCode3——回文数_第1张图片


题目内容:

给你一个整数 x ,如果 x 是一个回文整数,返回 true ;否则,返回 false 。

回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。例如,121 是回文,而 123 不是。

示例 1:

输入:x = 121
输出:true

示例 2:

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

示例 3:

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

示例 4:

输入:x = -101
输出:false

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/palindrome-number


题目解法:

class Solution(object):
    def isPalindrome(self, x):
        """
        :type x: int
        :rtype: bool
        """
        self.x = x
        x = str(x)
        # print(x)
        if int(x) > 2 ** 31 - 1 or int(x) < -2 ** 31:
            a = ("输入不符合规范!!!")
            return a
        num = str(x[::-1])
        # print(num)
        if str(num)==str(x):
            return True
        else:
            return False
if __name__ == '__main__':
    x=1223344
    a=Solution()
    print(a.isPalindrome(x))

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