행렬의 덧셈은 행과 열의 크기가 같은 두 행렬의 같은 행, 같은 열의 값을 서로 더한 결과가 됩니다. 2개의 행렬 arr1과 arr2를 입력받아, 행렬 덧셈의 결과를 반환하는 함수, solution을 완성해주세요.
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;
}
}
행렬의 덧셈을 할수있느냐에 대한 기초적인 문제였다.
행렬의 경우 Length 대신에 GetLength메서드를 사용해 행과 렬의 길이를 파악이 가능하다.