-Code
def solution(s):
stack = []
for i in s:
if stack and stack[-1] == '(' and i == ')':
stack.pop()
else:
stack.append(i)
return True if not stack else False
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[프로그래머스/파이썬] 영어 끝말잇기 (0) | 2022.05.17 |
---|---|
[프로그래머스/파이썬] 피보나치 수 (0) | 2022.05.17 |
[프로그래머스/파이썬] 괄호 회전하기 (0) | 2022.05.17 |
[프로그래머스/파이썬] 튜플 (0) | 2022.05.17 |
[프로그래머스/파이썬] 짝지어 제거하기 (0) | 2022.05.17 |