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.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
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
c
array
Please
log in
or register to answer this question.
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)
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...