[Algorithm] LeetCode #20 - Valid Parentheses
개요
LeetCode #20, Valid Parentheses 문제를 풀어봅니다.
Given a string s
containing just the characters '('
, ')'
, '{'
, '}'
, '['
and ']'
, determine if the input string is valid.
An input string is valid if:
- Open brackets must be closed by the same type of brackets.
- Open brackets must be closed in the correct order.
Example 1:
Input: s = “()” Output: true
Example 2:
Input: s = “()[]{}” Output: true
Example 3:
Input: s = “(]” Output: false
Example 4:
Input: s = “([)]” Output: false
Example 5:
Input: s = “{[]}” Output: true
Constraints:
1 <= s.length <= 104
s
consists of parentheses only'()[]{}'
.
table 딕셔너리에 미리 괄호의 뒷부분에 해당하는 것들을 넣어둡니다. Input으로 받은 s에서 하나씩 가져올 때 table에 없다면 stack 리스트에 넣어두고 그 다음 것들에서 table에 들어 있으면서 매치되는 값이 stack에서 pop 한 것과 같으면 제대로 된 괄호입니다. 예를 들어, 처음에 ‘(‘ 가 오면 stack으로 들어갈 것이고, 그 다음에 ‘)’가 오면 table에서 매치시킬 때 ‘(‘이고 stack에서 pop 해도 ‘(‘ 이므로 제대로 된 것입니다.
class Solution:
def isValid(self, s: str) -> bool:
stack = []
table = {
')' : '(',
'}' : '{',
']' : '[',
}
for char in s:
if char not in table:
stack.append(char)
elif not stack or table[char] != stack.pop():
return False
return len(stack) == 0