title: "[프로그래머스] 행렬의 덧셈 Python 파이썬 해설 (Level 1) - 이도훈"
cleanUrl: "programmers/12950"
description: "프로그래머스 Level 1 문제 [행렬의 덧셈]의 풀이를 정리합니다."
def solution(arr1, arr2):
answer = []
for r1, r2 in zip(arr1, arr2):
answer.append([c1+c2 for c1, c2 in zip(r1, r2)])
return answer
프로그래머스 코딩테스트 연습 https://school.programmers.co.kr/learn/challenges