Coding TestProgrammersLevel 112950. 행렬의 덧셈On this page12950. 행렬의 덧셈 Solution function solution(arr1, arr2) { return arr1.map((list, xIdx) => list.map((value, yIdx) => value + arr2[xIdx][yIdx]) );} Review . References Programmers - 행렬의 덧셈