https://programmers.co.kr/learn/courses/30/lessons/12909
function solution(s){
let stack=[];
for(let x of s){
if(x==='(') stack.push(x);
else{
if(stack.length===0) return false;
stack.pop();
}
}
if(stack.length!==0) return false;
return true;
}
예전에 강의에서 풀었던 문제이다.
10/27