-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminimum_bracket_addition.py
35 lines (30 loc) · 1 KB
/
minimum_bracket_addition.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
'''
Given a string s containing brackets ( and ), return the minimum
number of brackets that can be inserted so that the brackets are balanced.
'''
class Solution:
def solve(self, s):
stack = []
for bracket in s:
if bracket == '(':
stack.append(bracket)
elif bracket == ')':
if len(stack) > 0 and stack[-1] == '(':
stack.pop()
else:
stack.append(bracket)
return len(stack)
-----------------------------------------------------------------------------------------
class Solution:
def solve(self, s):
num_open_brackets = 0
num_need_brackets = 0
for bracket in s:
if bracket == "(":
num_open_brackets += 1
elif num_open_brackets:
num_open_brackets -= 1
else:
num_need_brackets += 1
num_need_brackets += num_open_brackets
return num_need_brackets