码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode(9)Palindrome Number

时间:2017-07-02 17:45:11      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:http   isp   str   img   pre   python   else   als   blog   

题目如下:

技术分享

Python代码:

    def isPalindrome(self, x):
        """
        :type x: int
        :rtype: bool
        """
        if(x>=0):
            s = int(str(x)[::-1])
            if(x==s):
                return True
            else:
                return False
        else:
            return False

 

LeetCode(9)Palindrome Number

标签:http   isp   str   img   pre   python   else   als   blog   

原文地址:http://www.cnblogs.com/CQUTWH/p/7106508.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!