-
Notifications
You must be signed in to change notification settings - Fork 17
/
ValidParenthesis.py
37 lines (37 loc) · 1001 Bytes
/
ValidParenthesis.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
class Solution:
def isValid(self, s):
"""
:type s: str
:rtype: bool
"""
if s is None:
return True
stack = []
for t in s:
if t == ')':
try:
current = stack.pop()
if current != '(':
return False
except:
return False
elif t == '}':
try:
current = stack.pop()
if current != '{':
return False
except:
return False
elif t == ']':
try:
current = stack.pop()
if current != '[':
return False
except:
return False
else:
stack.append(t)
if len(stack) == 0:
return True
else:
return False