9. 回文数

9. 回文数

 

方法一

class Solution(object):
    def isPalindrome(self, x):
        """
        :type x: int
        :rtype: bool
        """
        if x < 0: return False
        x = str(x)
        for i in range(len(x)//2):
            if x[i] != x[len(x)-i-1]:
                return False
        return True
            
        

 

posted @ 2019-01-19 15:36  小学弟-  阅读(121)  评论(0编辑  收藏  举报