티스토리 뷰
문제
입력 문자열은 다음 경우에 유효
하다.
- 열린 브래킷은 동일한 유형의 브래킷으로 닫아야 합니다.
- 열린 브래킷은 올바른 순서로 닫아야 합니다.
leetcode 20 - Valid Parentheses
코드
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
'알고리즘' 카테고리의 다른 글
[algorithm] leetcode 771 - Jewels and Stones (파이썬) (0) | 2022.03.28 |
---|---|
[algorithm] leetcode 641 - Design Circular Deque (파이썬) (0) | 2022.03.25 |
[algorithm] leetcode 232 - Implement Queue using Stacks (파이썬) (0) | 2022.03.23 |
[algorithm] leetcode 225 - Implement Stack using Queues (파이썬) (0) | 2022.03.22 |
[algorithm] 프로그래머스 - 없는 숫자 더하기 (파이썬) (0) | 2022.03.20 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 자료구조
- 리팩토링
- 파이썬
- 코틀린
- 그리디
- Spring
- 스프링
- Algorithm
- 백준
- 코테
- 구현
- 인프런
- 북클럽
- 스프링 부트
- 릿코드
- 스프링부트
- 김영한
- 정렬
- 노마드
- 문자열
- 알고리즘
- 노마드코더
- Real MySQL
- kotlin
- MySQL
- mysql 8.0
- spring boot
- leetcode
- 데이터베이스
- webflux
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함