美文网首页
leetcode 回文数

leetcode 回文数

作者: 仁安天下 | 来源:发表于2019-10-13 11:33 被阅读0次

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

示例 1:

输入: 121
输出: true
示例 2:

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

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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/palindrome-number
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

class Solution(object):
    def isPalindrome(self, x):
        """
        :type x: int
        :rtype: bool
        """
        l=list(str(x))
        l.reverse()
        print l
        string="".join(l)
        if string==str(x):
            return True
        else:
            return False
        

相关文章

网友评论

      本文标题:leetcode 回文数

      本文链接:https://www.haomeiwen.com/subject/uuphmctx.html