글
프로그래머스 C# 행렬의 덧셈(GetLength, 이중 배열 덧셈)
프로그래밍
2023. 1. 23. 22:00
728x90
SMALL
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<arr2.GetLength(1);j++)
{
answer[i,j] = arr1[i,j] + arr2[i,j];
}
}
return answer;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 직사각형 별찍기(Console.Write, WriteLine) (0) | 2023.01.24 |
---|---|
프로그래머스 C# x만큼 간격이 있는 n개의 숫자(using System.Collections.Generic, List.Add) (0) | 2023.01.23 |
프로그래머스 C# 최솟값 구하기(배열 곱의 최솟값, Reverse, Sort of Array) (0) | 2023.01.23 |
프로그래머스 C# 피보나치 수(점화식) (0) | 2023.01.23 |
프로그래머스 C# 하샤드 수(0 예외 처리) (0) | 2023.01.23 |