문제
Given an integer array arr and a mapping function fn, return a new array with a transformation applied to each element.
The returned array should be created such that returnedArray[i] = fn(arr[i], i).
Please solve it without the built-in Array.map method.
https://leetcode.com/problems/apply-transform-over-each-element-in-array/
예시
직접 map 함수를 구현하면 된다. arr에 있는 각 원소에 fn을 적용하여 다시 넣어주면 된다.
코드
/**
* @param {number[]} arr
* @param {Function} fn
* @return {number[]}
*/
var map = function(arr, fn) {
let newArr = [];
arr.forEach((number, idx)=>{
newArr.push(fn(number, idx));
});
return newArr;
};
리턴할 새로운 배열인 newArr를 만들고, arr를 돌면서 fn의 인자로 넣어준 뒤, 해당 결과를 newArr에 push 해주었다.
728x90
'Algorithm > leetcode' 카테고리의 다른 글
[leetcode][JS] 2665. Counter II (0) | 2024.01.25 |
---|---|
[leetcode][JS] 2648. Generate Fibonacci Sequence (0) | 2024.01.25 |
[leetcode][JS] 2634. Filter Elements from Array (0) | 2024.01.22 |
[leetcode][JS] 2629. Function Composition (0) | 2024.01.22 |
[leetcode][JS] 2626. Array Reduce Transformation (0) | 2024.01.18 |