Untitled

Anonymous
plain_text
10/22/2021 3:44 PM
248 B
20
Indexable
function sum(arr, n) {
  // Only change code below this line
  if(n <= 0){
    return 0;
  } else {
    return sum(arr, n - 1) + arr[n - 1];
  }
  // Only change code above this line
}
Editor is loading...