function solution(arr) {
const answer = [];
arr.map((element, index) => {
if (answer[answer.length - 1] !== element) {
answer.push(element);
}
})
return answer;
}
반응형
'자료구조&알고리즘 > 알고리즘-문제풀이' 카테고리의 다른 글
Leetcode-easy-1.Two Sum (0) | 2020.07.14 |
---|---|
[프로그래머스-Level2] 프린터 (0) | 2020.06.24 |
[프로그래머스-Level1] 하샤드수 (0) | 2020.06.21 |
[프로그래머스-Level1] 문자열을 정수로 바꾸기 (0) | 2020.06.21 |
[프로그래머스-Level1] 제일 작은 수 제거하기 (0) | 2020.06.21 |