[프로그래머스] 올바른 괄호(C)

수경·2022년 1월 28일
0

problem solving

목록 보기
43/174

코드

#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>

bool solution(const char* s) {
    int left = 0, right = 0;
    
    if (*s == ')')
        return false;
    while (*s) {
        if (*s == '(')
            left++;
        else if (*s == ')' && left > right)
            right++;
        else
            return false;
        s++;
    }
    return (left == right) ? true : false;
}
profile
어쩌다보니 tmi뿐인 블로그😎

0개의 댓글