July 25, 2021
def solution(arr1, arr2):
answer = [[0] * len(arr2[0]) for _ in range(len(arr1))]
for i in range(len(arr1)):
count = 0
for j in range(len(arr2[0])):
sum = 0
for k in range(len(arr1[0])):
sum += arr1[i][k] * arr2[k][count]
answer[i][j] = sum
count += 1
print(answer)
return answer
solution([[2, 3, 2], [4, 2, 4], [3, 1, 4]], [[5, 4, 3], [2, 4, 1], [3, 1, 1]])
solution([[2, 3, 2], [4, 2, 4], [3, 1, 4]], [[5, 4], [2, 4], [3, 1]])
def productMatrix(A, B):
return [[sum(a*b for a, b in zip(A_row,B_col)) for B_col in zip(*B)] for A_row in A]