Matrix Multiplication
Create a function that accepts two 2d matrixes and multiplies them together. Pretty simple stuff honestly, google matrix multiplication if you are confused.
Example
[[1,2][3,4]], [[5,6],[0,7]]
-> [[5, 20],[15, 46]]
Create a function that accepts two 2d matrixes and multiplies them together. Pretty simple stuff honestly, google matrix multiplication if you are confused.
[[1,2][3,4]], [[5,6],[0,7]]
-> [[5, 20],[15, 46]]