Haribo ML, AI, MATH, Algorithm

올바른 괄호

2021-01-20
Haribo

올바른 괄호

코드

(, ) 의 갯수가 짝이맞고, 열린게 없는데 닫는 경우를 체크합니다.

def solution(s) :
    open_count = 0
    for type in s :
        if open_count <= 0 and type == ')' : return False
        open_count += 1 if type == '(' else -1
    return True and open_count == 0 

Similar Posts

이전 포스트 순위 검색

다음 포스트 카펫

Comments