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

leetcode-easy-string-

时间:2019-06-10 10:42:35      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:string   self   obj   str   mamicode   color   return   ret   image   

mycode

 

注意以下陷阱

class Solution(object):
    def isPalindrome(self, s):
        """
        :type s: str
        :rtype: bool
        """
        res = s = [i for i in s if i !=  ]
        print(s)
        res.reverse()
        print(s)
        print(res)
        return res == s

技术图片

 

leetcode-easy-string-

标签:string   self   obj   str   mamicode   color   return   ret   image   

原文地址:https://www.cnblogs.com/rosyYY/p/10996320.html

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