Haribo ML, AI, MATH, Algorithm

내적


내적

코드

def solution(a, b):
    return sum(x*y for x, y in zip(a, b))

Similar Posts

Comments