24 Mon
내적
'''
https://programmers.co.kr/learn/courses/30/lessons/70128
내적
[풀이]
1. zip 사용
'''
def solution(a, b):
return sum([i*j for i, j in zip(a, b)])
'''
'''Last updated
Was this helpful?
'''
https://programmers.co.kr/learn/courses/30/lessons/70128
내적
[풀이]
1. zip 사용
'''
def solution(a, b):
return sum([i*j for i, j in zip(a, b)])
'''
'''Last updated
Was this helpful?
Was this helpful?