728x90
def solution(arr1, arr2):
answer = []
row= len(arr1) #row
col= len(arr1[0]) #column
for i in range(row):
tmp=[]
for j in range(col):
tmp.append(arr1[i][j]+arr2[i][j])
answer.append(tmp)
return answer
원소끼리는 더하는 방법은 알았는데 어떻게 배열을 만들지가 문제였다.
'STUDY > Algorithm' 카테고리의 다른 글
[프로그래머스] LEVEL2 다리를 지나는 트럭,python3, 스택/큐 (0) | 2019.10.22 |
---|---|
[프로그래머스] LEVEL1 x만큼 간격이 있는 n개의 숫자, python3 (0) | 2019.10.19 |
[프로그래머스] LEVEL1 핸드폰 번호 가리기,python3 (0) | 2019.10.19 |
[프로그래머스] LEVEL1 최대공약수와 최소공배수, python3 (0) | 2019.10.19 |
[프로그래머스] 제일 작은 수 제거하기,python3 (0) | 2019.10.19 |