Sachindrck / hactoberfest_contribution_2022

Create four pull request and win hacktoberfest swags!
GNU General Public License v3.0
25 stars 104 forks source link

Sum of Fibonacci Numbers #259

Open Sachindrck opened 2 years ago

Sachindrck commented 2 years ago

Given a number positive number n, find value of f0 + f1 + f2 + …. + fn where fi indicates i’th Fibonacci number. Remember that f0 = 0, f1 = 1, f2 = 1, f3 = 2, f4 = 3, f5 = 5, … Examples :

Input : n = 3 Output : 4 Explanation : 0 + 1 + 1 + 2 = 4

Garvit414 commented 2 years ago

I want to contribute to this issue. Please assign it to me @Sachindrck

notsanidhyak commented 2 years ago

Please assign this to me :)