[9/10] 올바른 괄호

이경준·2021년 9월 10일
0

코테

목록 보기
95/140
post-custom-banner

레벨2 문제

내 코드

def solution(s):
    arr = []

    for i in s:
        if ( i == ')' and len(arr) != 0 and arr[-1] == '(' ):
            arr.pop()
        else:
            arr.append(i)
    
    if ( len(arr) == 0 ):
        answer = True
    else:
        answer = False
    
    return answer

로직

  • 스택 자료구조
profile
The Show Must Go On

0개의 댓글