Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 285 Bytes

README.md

File metadata and controls

7 lines (4 loc) · 285 Bytes

Recursion and Algorithm Practice

  1. Implement the fibonacci sequence with a for loop and then with recursion.

  2. Implement Merge Sort algorithm that sorts an array

    * Extra Credit: Re-implement fibonacci sequence, but with Python instead of JavaScript - fibonacci.py file