https://github.com/jdegand/odin-project-recursion
Odin Project Javascript - Computer Science - Recursion
https://github.com/jdegand/odin-project-recursion
computer-science odin-project
Last synced: over 1 year ago
JSON representation
Odin Project Javascript - Computer Science - Recursion
- Host: GitHub
- URL: https://github.com/jdegand/odin-project-recursion
- Owner: jdegand
- Created: 2022-08-22T20:19:20.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-22T20:21:02.000Z (almost 4 years ago)
- Last Synced: 2025-01-22T09:13:09.286Z (over 1 year ago)
- Topics: computer-science, odin-project
- Language: JavaScript
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Odin Project Recursion
[Odin Project Directions](https://www.theodinproject.com/lessons/javascript-recursion)
## Useful Resources
- [Geeks for Geeks](https://www.geeksforgeeks.org/program-for-nth-fibonacci-number/) - various time complexity fibonacci functions
- [Stack Overflow](https://stackoverflow.com/questions/36415203/how-can-i-recursively-generate-an-array-of-the-fibonacci-sequence) - recursive array of fibonacci sequence
- [Stack Overflow](https://stackoverflow.com/questions/25858498/recursive-fibonacci-function-with-negative-numbers) - recursive fibonacci function with negative numbers
- [YouTube](https://www.youtube.com/watch?v=99K-Y4uoWFk) - How to Print Fibonacci Series in JavaScript | For Loop & Array
- [YouTube](https://www.youtube.com/watch?v=emrRW99jeFE) - Fibonacci Algorithm Recursive and Iterative and Time Complexity
- [Stack Overflow](https://stackoverflow.com/questions/49341667/fibonacci-recursive-function-with-an-output-of-the-array-of-the-sequence-in-java) - fibonacci recursion function with an output of the array of the sequence
- [Digital Ocean](https://www.digitalocean.com/community/tutorials/js-understanding-merge-sort) - understanding merge sort