https://programmers.co.kr/learn/courses/30/lessons/12950
function solution(arr1, arr2) {
let answer=[], arr;
for(let i=0; i<arr1.length; i++){
arr=[];
for(let j=0; j<arr1[i].length; j++){
arr.push(arr1[i][j]+arr2[i][j]);
}
answer.push(arr);
}
return answer;
}
map을 통해 풀이한 코드이다. 이차원 배열에서는 map을 이런식으로 사용할 수 있다니... 완전 신기하다🤔
return A.map((a,i) => a.map((b, j) => b + B[i][j]));
10/25
이차원 map 익히기