행렬의 덧셈

Creating the dots·2021년 10월 17일
0

Algorithm

목록 보기
28/65

프로그래머스

https://programmers.co.kr/learn/courses/30/lessons/12950

나의 풀이

function solution(arr1, arr2){
  const res = new Array();
  for(let i=0;i<arr1.length;i++){
    res.push(new Array());
  }
  for(let i=0;i<arr1.length;i++){
    for(let j=0;j<arr1[0].length;j++){
      res[i].push(arr1[i][j]+arr2[i][j]);
    }
  }
  return res;
}

다른 사람 풀이

function solution(arr1, arr2){
  return arr1.map((arr, index) => {
    return arr.map((el, idx) => {
      return el + arr2[index][idx]
    })
  })
}                 
profile
어제보다 나은 오늘을 만드는 중

0개의 댓글