LeetCode 9.回文数 Python

题目描述:

LeetCode 9.回文数 Python_第1张图片


思路解析:

利用字符串进行判断。

对于一串数字,”正序 = 倒序” 即为回文数,给定的 x 为 int 类型,先将其转换为字符串型 str,利用字符串的索引进行逆序操作,判断是否相等,相等返回True,否则返回False。


代码:

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

class Solution:
    def isPalindrome(self, x: int) -> bool:
        #x = input()    报错
        x = str(x)
        if x == x[::-1]:
            return True
        else:
            return False

你可能感兴趣的:(python)