-
Notifications
You must be signed in to change notification settings - Fork 0
/
20.有效的括号.py
37 lines (35 loc) · 1.02 KB
/
20.有效的括号.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
#
# @lc app=leetcode.cn id=20 lang=python3
#
# [20] 有效的括号
#
# @lc code=start
class Solution:
def isValid(self, s: str) -> bool:
if len(s)%2 != 0:
return False
else:
Stack = []
for ch in s:
if ch == '(' or ch == '{' or ch == '[':
Stack.append(ch)
elif ch == '}':
if len(Stack)!=0 and Stack[-1] == "{":
Stack.pop()
else:
return False
elif ch == ']':
if len(Stack)!=0 and Stack[-1] == "[":
Stack.pop()
else:
return False
elif ch == ')':
if len(Stack)!=0 and Stack[-1] == "(":
Stack.pop()
else:
return False
if len(Stack)!=0:
return False
else:
return True
# @lc code=end