코딩공부/프로그래머스

[프로그래머스]Lv.2 행렬의 곱셈 C#

usingsystem 2023. 8. 4. 13:42
728x90

https://school.programmers.co.kr/learn/courses/30/lessons/12949

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

소스코드

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