본문 바로가기
Beakjoon&프로그래머스/파이썬

[프로그래머스/파이썬] 올바른 괄호

by 현장 2022. 5. 17.

-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