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

20. Valid Parentheses

时间:2017-12-16 17:14:42      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:pen   def   pos   app   body   bsp   col   style   can   

class Solution(object):
    def isValid(self, s):
        """
        :type s: str
        :rtype: bool
        """
        l=[]
        candidate=[(,),{,},[,]]
        d={(:),{:},[:],):0,]:0,}:0}
        for i in range(len(s)):
            if s[i] in candidate:
                if len(l)==0:
                    l.append(s[i])
                else:
                    if(d[l[len(l)-1]]==s[i]):
                        del l[len(l)-1]
                    else:
                        l.append(s[i])
            else:
                break
        if len(l)==0:
            return True
        else:
            return False        

 

20. Valid Parentheses

标签:pen   def   pos   app   body   bsp   col   style   can   

原文地址:http://www.cnblogs.com/xlqtlhx/p/8046858.html

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