728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12950
public class Solution {
public int[,] solution(int[,] arr1, int[,] arr2) {
int[,] answer = arr1;
for (int i = 0; i < answer.GetLength(0); i++)
for (int j = 0; j < answer.GetLength(1); j++)
answer[i, j] += arr2[i, j];
return answer;
}
}
이것도 기엽구만
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 평균 구하기 (0) | 2021.06.27 |
---|---|
[프로그래머스 C#] 하샤드 수 (0) | 2021.06.18 |
[프로그래머스 C#] 핸드폰 번호 가리기 (0) | 2021.06.04 |
[프로그래머스 C#] x만큼 간격이 있는 n개의 숫자 (0) | 2021.05.29 |
[프로그래머스 C#] 직사각형 별찍기 (0) | 2021.05.16 |