728x90
https://school.programmers.co.kr/learn/courses/30/lessons/12949
소스코드
using System;
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 < arr1.GetLength(1); j++)
{
for (int y = 0; y < arr2.GetLength(1); y++)
{
answer[i, y] += arr1[i, j] * arr2[j, y];
}
}
}
return answer;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.0 등차수열의 특정한 항만 더하기C++ (0) | 2023.08.04 |
---|---|
[프로그래머스]Lv.2 H-Index C# (0) | 2023.08.04 |
[프로그래머스]Lv.2 JadenCase 문자열 만들기 C# (0) | 2023.08.04 |
[프로그래머스]Lv.2 피보나치 수 C#(재귀) (0) | 2023.08.04 |
[프로그래머스]Lv.2 최댓값과 최솟값 C#(문자배열 to 정수배열 변환 링큐) (0) | 2023.08.02 |