올바른 괄호

이정연·2023년 1월 24일
0

CodingTest

목록 보기
107/165

올바른 괄호

코드

def solution(s):
    left, right = 0,0
    s = list(s)
    while s:
        if left > right:
            return False
        tmp = s.pop()
        if tmp == '(':
            left += 1
        else:
            right += 1
    if left != right:
        return False
    return True
profile
0x68656C6C6F21

0개의 댓글