Skip to content

anvolve/AdventOfCode

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Challenges of the Advent of Code 2019 with functional programming only.

Participe

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'

Help

If you want to help, create a PR with improved versions of our codes, we want to learn! :)

About

https://adventofcode.com/2019 with functional programming only

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%