문제
해결방안
using System;
public class Solution
{
public int[,] solution(int[,] arr1, int[,] arr2)
{
int[,] answer = new int[arr1.GetLength(0),arr1.GetLength(1)];
for (int i = 0; i < arr1.GetLength(0); i++)
{
for (int j = 0; j < arr1.GetLength(1); j++)
{
answer[i, j] = arr1[i, j] + arr2[i, j];
}
}
return answer;
}
}
'알고리즘' 카테고리의 다른 글
프로그래머스 C# 최대공약수와 최소공배수 (0) | 2024.06.25 |
---|---|
프로그래머스 C# 직사각형 별찍기 (0) | 2024.06.24 |
프로그래머스 C# 문자열 다루기 기본 (0) | 2024.06.24 |
[프로그래머스] 가운데 글자 가져오기 (0) | 2024.02.23 |
[프로그래머스] C# 제일 작은 수 제거하기 (0) | 2024.02.22 |