You are viewing a single comment's thread. Return to all comments →
import numpy as np N = int(input()) input_list_A = np.array([list(map(int, input().split())) for i in range(N)]) input_list_B = np.array([list(map(int, input().split())) for i in range(N)]) print(np.dot(input_list_A,input_list_B))
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 →