Advent of code solutions
All the solution are in JavaScript/TypeScript
.
- Complete all 25 days (lol)
- Mainly use functional programming
- Add visual representation of solutions
I would like to add a visual representation to my resolution method for the problems if I have time.
Simply open a terminal at the project's root:
- Install dependencies with
npm i
- Create a
config.json
file at the root containing your session cookie (to retrieve your inputs) :
{
"cookie": "my_secret_cookie"
}
- Start project with
npm start