You have 3 lambda functions saved to parameters - a,b,c, that all require an argument to perform a simple mathmatical calculation and return the result. How can you execute them all so that the output of one becomes the input of the other in a single call?
Anonymous
The point was to create a function X (with args + kwargs) that returns a function Y. Func Y returns the result of all the calculations. It does so by executing each arg in a reversed order (args includes a,b,c).
Check out your Company Bowl for anonymous work chats.