Notice
Recent Posts
Recent Comments
Link
S E P H ' S
[Python] 행렬의 덧셈 본문
def solution(arr1, arr2):
answer = []
for i in range(len(arr1)):
tmp = []
for j in range(len(arr1[i])):
tmp.append(arr1[i][j] + arr2[i][j])
answer.append()
return answer
'Algorithm > Programmers' 카테고리의 다른 글
[Python] 하샤드 수 (0) | 2021.06.25 |
---|---|
[Python] 핸드폰 번호 가리기 (0) | 2021.06.24 |
[Python] x만큼 간격이 있는 n개의 숫자 (0) | 2021.06.24 |
[Python] 완주하지 못한 선수 (0) | 2021.06.24 |
[Python] 크레인 인형뽑기 게임 (0) | 2021.06.24 |