Open jmpark0118 opened 3 years ago
출처 : https://www.hackerrank.com/challenges/np-inner-and-outer/problem
import numpy as np arrA = np.array(tuple([input().split()]), int) arrB = np.array(tuple([input().split()]), int) print(int(np.inner(arrA, arrB))) print(np.outer(arrA, arrB))
출처 : https://www.hackerrank.com/challenges/np-inner-and-outer/problem