반응형
https://programmers.co.kr/learn/courses/30/lessons/12909
#include <string>
#include <iostream>
using namespace std;
bool solution(string s)
{
int val = 0;
for(int i=0; i<s.size(); i++) {
char ch = s[i];
if(ch == '(') val++;
else {
if(!val) return false;
val--;
}
}
if(val) return false;
else return true;
}
반응형
'Algorithm' 카테고리의 다른 글
프로그래머스 : 호텔 방 배정 (0) | 2021.11.14 |
---|---|
프로그래머스 : 셔틀버스 (0) | 2021.11.14 |
백준 2210 : 숫자판 점프 (0) | 2021.11.14 |
백준 14003 : 가장 긴 증가하는 부분 수열 5 (0) | 2021.11.14 |
백준 12738 : 가장 긴 증가하는 부분 수열 3 (0) | 2021.11.14 |