There are two assignments here: fibonacci.js
and mergeSort.js
.
- The first one contains two functions
fibs
andfibsRec
to generate an array ofn
fibonacci numbers using iteration and recursion respectively. - The second one is a function to sort an array using the merge sort algorithm.
nodemon
jest
This assignments were a part of The Odin Project. Look at the project here.