Split fibonacci into categories
kelvins opened this issue · 2 comments
kelvins commented
There are different types of Fibonacci implementations in different languages.
Sometimes multiple implementations in the same file.
We could use the same approach used by "Min and Max" and split it into 3 categories:
- Fibonacci (Iterative)
- Fibonacci (Recursive)
- Fibonacci (Memoization)
This task is related to:
- Split the Fibonacci row (README) into 3 rows, as described above.
- Check the current implementation in each language and move it to the correct category.
metacoder87 commented
I have submitted a series of pull requests that should close this issue.
- Split the Fibonacci row (README) into 3 rows, as described above.
- Check the current implementation in each language and move it to the correct category.
- Filled in the missing implementations of the Fibonacci function in all languages.
kelvins commented
Hi @metacoder87, since all the PRs are related, and merging some of them alone will break the CI, I'll merge them into a separate feature branch, and open a new PR to merge them all into the main branch.