Solution Review: Average of Numbers
This review provides a detailed analysis of the solution to find the average of numbers.
We'll cover the following...
We'll cover the following...
Solution: Using Recursion
Explanation
The average of an array containing only number, is the number itself. This condition can be our base case.
...