Empresa engajada
Asked a question to determine the sum of an array of integers. Recursive problem.
Sigiloso
Here is the recursive implementation for this in ruby def sum_of_arr(arr, n) if n == 0 return 0 else return arr[n-1] + sum_of_arr(arr,n-1) end end