题解 | #括号序列#

括号序列

http://www.nowcoder.com/practice/37548e94a270412c8b9fb85643c8ccc2

class Solution:
    def isValid(self , s ):
        # write code here
        stack = []
        match = {'(':')', '[':']','{':'}'}
        for i in s:
            if i in match:
                stack.append(i)
            else: 
                if not stack or match[stack.pop()] != i:
                    return False
        return not stack
全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务