[프로그래머스][Python] 내적
import numpy as np
def solution(a,b):
a = np.array(a)
b= np.array(b)
answer = sum(a*b)
return answer
import numpy as np
def solution(a,b):
a = np.array(a)
b= np.array(b)
answer = sum(a*b)
return answer