프로그래머스 12909 올바른 괄호

1 개요[ | ]

프로그래머스 12909 올바른 괄호

2 C++[ | ]

#include<string>
#include <iostream>

using namespace std;

bool solution(string s) {
    int x = 0;
    for(const char& c: s) {
        if(c == '(') {
            x++;
        } else {
            x--;
        }
        if(x<0) return false;
    }
    return x == 0;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}