Write the missing base case
for function "largest" such that it finds the
largest number in array "numbers". Note that
when "largest" is first called, "index" is 0.
Notice that the index variable is incremented every time the recursive call is executed. The base case should be executed on the last element of the array.
The index for this element is one less than the length of the array.