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.
constpart1=()=>{/* Day X - Part 1 statements here */};constpart2=()=>{/* 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! :)