题解 | #矩阵乘法#
https://www.nowcoder.com/practice/bf358c3ac73e491585943bac94e309b0
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param a int整型二维数组 第一个矩阵 * @param b int整型二维数组 第二个矩阵 * @return int整型二维数组 */ public int[][] solve (int[][] a, int[][] b) { // write code here int n = a.length; int m = b[0].length; int[][] res = new int[n][m]; int temp = 0; for(int i = 0;i < n;i++){ for(int j = 0;j < m;j++){ for(int k = 0;k < a[0].length;k++){ temp += a[i][k] * b[k][j]; } res[i][j] = temp; temp = 0; } } return res; } }