Applications of Lambda Functions
Drag and drop the options to the blanks to complete the program to
perform a task using map, filter and reduce functions with lambda
functions as parameters.
The goal of this function will be to take a list of numbers and
use the map, filter and reduce functions to return the sum of all
even squares of the numbers in the list.
Input = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Output:
[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
[4, 16, 36, 64, 100]
220