当前位置 : 主页 > 手机开发 > ROM >

leetcode 9 -> Palindrome Number

来源:互联网 收集:自由互联 发布时间:2021-06-10
class Solution( object ): def isPalindrome(self, x): """ :type x: int :rtype: bool """ s= str(x) if (s==s[::- 1 ]): return True else : return False

 

class Solution(object):
    def isPalindrome(self, x):
        """
        :type x: int
        :rtype: bool
        """
        s=str(x)
        if(s==s[::-1]):
            return True
        else:
            return False
网友评论