本文共 189 字,大约阅读时间需要 1 分钟。
直接按照矩阵乘法的定义来就行。
class Solution { public int[][] multiply(int[][] A, int[][] B) { int[][] C = new int[A.length][B[0].length]; for(int i=0;i
转载地址:http://wspk.baihongyu.com/