An open API service indexing awesome lists of open source software.

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.

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.