Challenges of the Advent of Code 2019 with functional programming only.
Create a PR with your player file inside each challenge, FE: ./1/player.john.js
.
Inside the js file place the part you're doing of the challenge and the function.
const part1 = () => {
/* Day X - Part 1 statements here */
};
const part2 = () => {
/* Day X - Part 2 statements here */
};
module.exports = { part1, part2 };
Execute the challenge with the day and compare the results.
node index.js 'challengeDay'
If you want to help, create a PR with improved versions of our codes, we want to learn! :)