728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12949
public class Solution {
public int[,] solution(int[,] arr1, int[,] arr2) {
int[,] answer = new int[arr1.GetLength(0), arr2.GetLength(1)];
for (int i = 0; i < arr1.GetLength(0); i++)
for (int j = 0; j < arr2.GetLength(1); j++)
for (int x = 0; x < arr1.GetLength(1); x++)
answer[i, j] += arr1[i, x] * arr2[x, j];
return answer;
}
}
행렬 곱셈!
반응형
'프로그래머스_C# > Level_2' 카테고리의 다른 글
[프로그래머스 C#] 최댓값과 최솟값 (0) | 2021.10.29 |
---|---|
[프로그래머스 C#] 최솟값 만들기 (0) | 2021.10.28 |
[프로그래머스 C#] 피보나치 수 (0) | 2021.10.27 |
[프로그래머스 C#] JadenCase 문자열 만들기 (0) | 2021.10.25 |
[프로그래머스 C#] N개의 최소공배수 (0) | 2021.10.22 |