Imagine that the user provides two 2D grids of the same dimensions. Return a 2D grid of the same dimensions were the two grids are multipled together. For example, if the user enters[[1, 2], [3, 4, 5], [6]] and
[[2, 3], [1, 2, 1], [2]]
your code would return the array [[2, 6], [3, 8, 5], [12]] .
Please do not use any Java code or libraries that we have not covered in class; this defeats the purpose of the
assessment. |