반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- leetcode #python #dfs #재귀
- dfs #python #leetcode #combination
- dfs #python #leetcode
- leetcode #subsets #dfs #itertools #python
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- Python #leetcode #dfs #그래프 #백트래킹
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- 아스테리스크 #Asterisk #파이썬
- gcd #최대공약수 #백준 #2981 #검문
- dfs #bfs #leetcode #python
- dfs #leetcode #python
- dfs #그래프 #graph #python #leetcode #course #schedule
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- python #백준 #9375 #패션왕 #신해빈
- dfs #leetcode #python #graph #그래프
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- 2004 #조합 0의 개수 #백준
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- final #java #자바 #안드로이드
- 코틀린 #Do it #깡샘 #안드로이드
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- dfs #bfs #이진트리 #파이썬 #리트코드
- 파이썬 #zip
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- 리트코드 #팰린드롬 #파이썬
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode,Python] 20. 유효한 괄호(Valid Parentheses) 본문
728x90
반응형
괄호로 된 입력값이 올바른지 판별하라.
Input: s = "()[]{}"
Output: true
Input: s = "([)]"
Output: false
Input: s = "{[]}"
Output: true
** 깔끔한 답안 **
1. 스택 일치 여부 판별
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|
cs |
해설:
( , { , [ 는 스택에 쌓아두고
) , } , ] 가 나타나면 쌓여있는 스택을 pop 하여 같은 괄호인지 비교하면 된다.
[출처 : 파이썬 알고리즘 인터뷰(박상길 지음, 정진호 일러스트) 출판사: 책만]
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
[LeetCode,Python] 739. 일일 온도(Daily Temperatures) (0) | 2021.07.11 |
---|---|
[LeetCode,Python] 316. 중복 문자 제거(Remove Duplicate Letters) (0) | 2021.07.11 |
[LeetCode,Python] 92. 역순 연결 리스트 2(Reverse Linked List 2) (0) | 2021.07.10 |
[LeetCode, Python] 328. 홀짝 연결 리스트(Odd Even Linked List) (0) | 2021.07.07 |
[LeetCode,Python] 24. 페어의 노드 스왑(Swap Nodes in Pairs) (0) | 2021.07.03 |