...

/

Challenge 1: Average of Numbers

Challenge 1: Average of Numbers

Given an array of numbers, compute the average of those numbers recursively.

Problem Statement

Implement a function that computes the average of all the numbers in an array.

If we have nn numbers and each number is denoted by aia_i (wherei=0,1,2,...,n1)(where \: i = 0, 1, 2, ..., n-1) ...