Solution Review: Using a Curried Function
In the following lesson, we will go over the solution of the challenge: Using a Curried Function.
Task
In this challenge, you had to create a non-recursive factorial function fact
in terms of a curried function product
which calculates the product of the values of a function for the points on a given interval.
Solution
A skeleton of the function was already provided for you. Let’s look it over.
...