from itertools import starmap
zip_with_function = lambda lst, f: list(starmap(f, zip(*lst)))
def zip_with_function(lst, f):
return list(map(lambda args: f(*args), zip(*lst)))
def get_sum_two_numbers(a, b):
return a + b
def zip_with_function(m, f):
return [f(i[0], i[1]) for i in zip(m[0],m[1])]
print(zip_with_function([[1, 2, 4], [3, 5, 8]], get_sum_two_numbers))
4 7 12 def zip_with_function(lists, func):
return [func(*args) for args in zip(*lists)]
Например, имеется функция
def get_sum_two_numbers(a, b):
return a + b
Тогда вызов
zip_with_function([[1, 2, 4], [3, 5, 8]], get_sum_two_numbers)
должен вернуть список [4, 7, 12].
Ваша задача написать только определение функции zip_with_function
Sample Input:
Sample Output:
GOOD