https://github.com/shravzzv/odin-recursion-project
Exercises on Recursion from The Odin Project.
https://github.com/shravzzv/odin-recursion-project
recursion theodinproject
Last synced: 7 months ago
JSON representation
Exercises on Recursion from The Odin Project.
- Host: GitHub
- URL: https://github.com/shravzzv/odin-recursion-project
- Owner: shravzzv
- Created: 2023-10-28T04:21:38.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-30T08:28:09.000Z (almost 2 years ago)
- Last Synced: 2025-02-02T22:59:18.482Z (9 months ago)
- Topics: recursion, theodinproject
- Language: JavaScript
- Homepage:
- Size: 42 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Project: Recursion
There are two assignments here: [`fibonacci.js`](fibonacci.js) and [`mergeSort.js`](mergeSort.js).
1. The first one contains two functions `fibs` and `fibsRec` to generate an array of `n` **fibonacci** numbers using **iteration** and **recursion** respectively.
2. The second one is a function to sort an array using the **merge sort algorithm**.## Packages used
- `nodemon`
- `jest`This assignments were a part of The Odin Project. Look at the [project](https://www.theodinproject.com/lessons/javascript-recursion) here.