Realisztion could be: ```python def applykw(func, kwargs): return func(**kwargs) ``` Usage: ```python >>> list(map(curry(applykw)(lambda x, y: x + y), [{'x':10, 'y':1}, {'x':20, 'y':2}])) [11, 22] ```