Could you give a help with Array in python ?!
The exercise is as follows, a matriz_mult(n1, n2)
function receives two arrays as a parameter and returns True
if the arrays are multiplied in the given order and False
otherwise.
The output should be something like:
n1 = [[1, 2, 3], [4, 5, 6]]
n2 = [[2, 3, 4], [5, 6, 7]]
matriz_mult(n1, n2) => False
n1 = [[1], [2], [3]]
n2 = [[1, 2, 3]]
matriz_mult(n1, n2) => True