Skip to content

zsoltime/freeCodeCamp-algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

freeCodeCamp Algorithm Scripting

This repo contains my solutions for freeCodeCamp's algorithm challenges.

You can also check my other repo where you find my freeCodeCamp projects.

I'm using AVA to test my solutions. You can use the following commands to test them yourself (once you cloned the repo and installed dependencies):

# test everything
npm test

# test the basic challenges
npm run test:basic

# test the intermediate challenges
npm run test:intermediate

# test the advanced challenges
npm run test:advanced

I'm also using ESLint with Airbnb's base config, and Prettier to keep my code in good shape. You can use the following commands:

# lint using ESLint
npm run lint

# format code with prettier
npm run format