You are viewing a single comment's thread. Return to all comments →
from numpy import array, inner, outer A = array([*map(int, input().split())]) B = array([*map(int, input().split())]) print(inner(A, B)) print(outer(A, B))
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 →
For Python3