코딩테스트/LV. 2

LV.2 :: 짝지어 제거하기

KUROMI98 2024. 10. 21. 01:25

https://school.programmers.co.kr/learn/courses/30/lessons/12973

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

function solution(s) {
    const stack = [];

    for (let letter of s) {
        if (stack.length > 0 && stack[stack.length - 1] === letter) {
            stack.pop();
        } else {
            stack.push(letter);
        }
    }

    return stack.length === 0 ? 1 : 0;
}