-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvalid_parentheses.py
68 lines (52 loc) · 2.5 KB
/
valid_parentheses.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
"""
Question: https://leetcode.com/problems/valid-parentheses/
"""
class Solution:
def isValid(self, s: str) -> bool:
## Implemented using stacks
# Create a dict of `closing` brackets as `keys` and 'opening' as `values`
closeToOpen = {')':'(', '}':'{', ']':'['}
# List as an empty stack
stack = []
# Iterate through the input string
for b in s:
"""
If `stack` isn't empty AND we have a valid bracket
AND if last brack from stack is equal to closing brack's key
from dict i.e. opening,
then remove that pair of brackets from the stack.
"""
# We check if it's a valid bracket and if the stack is non-empty
if b in closeToOpen and stack:
# Finally we check if the current closing parantheses matches the opening in the stack
if stack[-1] == closeToOpen[b]:
# If it is, then pop and move to the next bracket
stack.pop()
# If not, then invalid case, so we return False
else:
return False
# Here, we have another opening bracket or the stack is empty
else:
stack.append(b)
""" Returns True if stack is empty (checked using 'not stack') and vice-versa """
return True if not stack else False
""" Alternative code for same approach """
# closeToOpen = {")": "(", "]": "[", "}": "{"}
# stack = []
# for c in s:
# # If c not in `closeToOpen` dict, that means it's an opening bracket
# if c not in closeToOpen:
# # Add to stack and skip to next iteration
# stack.append(c)
# continue
# # If not previous condition, then it's a closing bracket
# # Now, check for non-valid condition i.e. top of stack doesn't match
# # current bracket's opening bracket
# if not stack or stack[-1] != closeToOpen[c]:
# # If doesn't match, invalid condition -> return False
# return False
# # If none of the previous conditions satisfied, valid bracket
# # So we pop from the stack!
# stack.pop()
# # `not stack` means stack is empty i.e. valid else False if stack is not empty
# return True if not stack else False