코딩테스트 #30 행렬의 덧셈

Jake Seo·2020년 7월 14일
0

프로그래머스 LV1

목록 보기
30/36

문제

풀이

map 함수를 연습하기 좋은 문제

let solution = (arr1, arr2) => arr1.map((el1, index1) => el1.map((el2, index2) => el2 + arr2[index1][index2]));
profile
풀스택 웹개발자로 일하고 있는 Jake Seo입니다. 주로 Jake Seo라는 닉네임을 많이 씁니다. 프론트엔드: Javascript, React 백엔드: Spring Framework에 관심이 있습니다.

0개의 댓글