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

2019年3月27日 921. Minimum Add to Make Parentheses Valid

时间:2019-03-27 09:20:33      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:tom   ddt   ==   turn   else   minimum   padding   int   round   

不是很难的模拟题,想好前后状态的变化就会发现,其实“)”括号才可以抵消之前的“(”括号,反之不行。


class Solution(object):
    def minAddToMakeValid(self, S):
        """
        :type S: str
        :rtype: int
        """
        l, r = 0, 0
        for i in S:
            if i == (:
                r += 1
            elif i == ):
                if r > 0:
                    r -= 1
                else:
                    l += 1
        return r+l

2019年3月27日 921. Minimum Add to Make Parentheses Valid

标签:tom   ddt   ==   turn   else   minimum   padding   int   round   

原文地址:https://www.cnblogs.com/seenthewind/p/10605190.html

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