[프로그래머스 Lv.2] 알고리즘 고득점 Kit 스택/큐 - 올바른 괄호

김민지·2024년 4월 7일
0

✨ 정답 ✨

function solution(s){    
    const stack = [];
    for(let i = 0; i < s.length; i++) {
        if (stack[stack.length - 1] === '(' && s[i] === ')') {
            stack.pop();
        } else {
            stack.push(s[i]);
        }
        console.log(stack)
    }
    
    return !stack.length;
}

🧵 참고한 정답지 🧵

💡💡 기억해야 할 점 💡💡

profile
이건 대체 어떻게 만든 거지?

0개의 댓글

관련 채용 정보