Just some small recursion practice I've done.
In some of the examples I included multiple solutions, such as:
- Iterative
- Recursive
- Proper tail calls
- Continuous passing style
- Trampolining
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
- NPM
Installation requires NPM which is included with Node. You can install Node by downloading the installer from the website.
To update NPM to the latest version:
npm install -g npm@latest
- Clone the repo
git clone https://github.com/sargalias/recursion-practice.git
- Install NPM packages
npm install
Open a terminal and go to the project directory.
Here are the commands to type:
- Run tests:
npm test
- Run a server with the project:
npm start
- Build the project for production:
npm run build
This project is licensed under the MIT License - see the LICENSE.md file for details.