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?