You are viewing a single comment's thread. Return to all comments →
p3
A,B = [np.array([input().split()],int) for _ in range(2)] print(np.inner(A,B)[0][0],np.outer(A,B),sep="\n")
Seems like cookies are disabled on this browser, please enable them to open this website
Inner and Outer
You are viewing a single comment's thread. Return to all comments →
p3