Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Returning sum of 2 ints in fibonacci

–2 votes
asked Feb 12, 2019 by pterrazas37 (110 points)
Help returning the sum of 2 integers in fibonacci. I have an array of 48 ints. I have scanf for the user to indicate 2 values between 1-47. I want to sum those 2 ints and then sum the next 2

1 Answer

0 votes
answered Mar 1, 2019 by try
def _findSum(arr, N):

     if len(arr)== 1:

        return arr[0]

     else:

        return arr[0]+_findSum(arr[1:], N)
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...