작성일 : January 6, 2022

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

해설 : https://messycode.tistory.com/63

나의 풀이

function solution(s)
{
    const arr = s.split('');
    
    while(arr.length) {
        for(let i=1; i<arr.length; i++) {
            if(arr[i-1] === arr[i]) 
        }
    }
}

풀이 해설

function solution(s)
{
    let arr = [];
    
    for(let i=0;i<s.length;i++){
       arr.push(s[i]);
       if(arr[arr.length-1]===arr[arr.length-2]){
           arr.pop();
           arr.pop();
       }
    }
    
    return arr.length ? 0 : 1;
}

후기

뭔가 while문으로 빨리 풀 수 있을거 같은데 ,, 못풀었다

정답은 스택!!!!!!!!