You are viewing a single comment's thread. Return to all comments →
This is understandable solution from my side
import numpy matrices = [] n = int(input()) for i in range(2): matrix = [] for i in range(n): matrix.append(list(map(int,input().split()))) matrices.append(matrix) print(numpy.dot(matrices[0],matrices[1]))
Seems like cookies are disabled on this browser, please enable them to open this website
Dot and Cross
You are viewing a single comment's thread. Return to all comments →
This is understandable solution from my side