정수 리스트 num_list와 정수 n이 주어질 때, num_list의 첫 번째 원소부터 마지막 원소까지 n개 간격으로 저장되어있는 원소들을 차례로 담은 리스트를 return하도록 solution 함수를 완성해주세요.
num_list | n | result |
---|---|---|
[4, 2, 6, 1, 7, 6] | 2 | [4, 6, 7] |
[4, 2, 6, 1, 7, 6] | 4 | [4, 7] |
function solution(num_list, n) {
let result = [];
for (let i=0; i<num_list.length; i+=n) {
result.push(num_list[i]);
}
return result;
}
const solution = (num_list, n) => num_list.filter((_, i) => !(i % n))