[20] Valid Parentheses | Leetcode Easy
문제설명
Given a string s containing just the characters '(', ')', '{', '}', '[' and ']',
determine if the input string is valid.
An input string is valid if:
1. Open brackets must be closed by the same type of brackets.
2. 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
제한사항
- 1 <= s.length <= 104
- s consists of parentheses only '( )[ ]{ }'.
파이썬 코드
class Solution:
def isValid(self, s: str) -> bool:
arr = []
if len(s) % 2 != 0 : return False #s의 길이가 짝수가 아니면 False반환.
for c in s:
if c == '(' or c == '{' or c == '[':
arr.append(c)
elif not self.fuc(arr, c):
return False
return not arr #배열이 비었으면 true 안비었으면 false
def fuc(self, a ,c) -> bool:
save = {')':'(' , '}':'{', ']':'['}
if a and a[-1] == save[c]:
a.pop()
return True
else : return False
Author And Source
이 문제에 관하여([20] Valid Parentheses | Leetcode Easy), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@yoongyum/20-Valid-Parentheses-Leetcode-Easy저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)