seunghyun Note
[프로그래머스] - 할 일 목록 with JS 본문
728x90
반응형
링크 : https://school.programmers.co.kr/learn/courses/30/lessons/181885
문제 풀이
오늘부터 다시 JS로 문제를 풀어보자! (코테를 위해..)
오랜만에 사용해서 익숙하지는 않아서 안풀었던 lv0부터 다시!
function solution(todo_list, finished) {
var answer = [];
for(let i=0; i<finished.length;i++){
if(!finished[i]) answer.push(todo_list[i]);
}
return answer;
}
js의 특징인 간단하게 코드 리뷰가 가능한 것인데.. 내 코드는 형편이 없다.
function solution(todo_list, finished) {
var answer = [];
return todo_list.filter((e,i) => !finished[i]);
}
728x90
반응형
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 폰켓몬 (해시) with JS (0) | 2024.01.12 |
---|---|
[프로그래머스] - 할인 행사 with JS (1) | 2024.01.11 |
[프로그래머스] - 핸드폰 번호 가리기 with JS (0) | 2024.01.09 |
[프로그래머스] - 가장 큰 수 with JS (0) | 2024.01.06 |
[프로그래머스] k번째수 with JS (0) | 2024.01.06 |