문제
https://programmers.co.kr/learn/courses/30/lessons/12973?language=javascript#
코드
function solution(s)
{
for (let i=0; i<s.length-1; i++) {
if (s[i] == s[i+1]) {
s = s.replace(s.substr(i,2), '')
i -= 2
}
}
return s.length == 0 ? 1 : 0;
}
function solution(s){
let answer = [];
for(var i=0; i<s.length; i++){
answer[answer.length-1] != s[i] ? answer.push(s[i]) : answer.pop();
}
return answer.length == 0 ? 1 : 0 ;
}
'⏳ 알고리즘 > JavaScript 알고리즘' 카테고리의 다른 글
프로그래머스 - LV2. 이진 변환 반복하기(월간 코드 챌린지 시즌1) (0) | 2021.06.28 |
---|---|
프로그래머스 - LV2. 기능개발 (0) | 2021.06.28 |
프로그래머스 - LV1. 키패드 누르기(카카오 2020 인턴쉽) (0) | 2021.06.21 |
프로그래머스 - LV1. 신규 아이디 추천(카카오 2021 블라인드 채용) (0) | 2021.06.21 |
프로그래머스 - LV1. 모의고사 (0) | 2021.06.20 |