Skip to content

developher-net/advent-of-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

63c4586 · Dec 25, 2023
Dec 5, 2023
Dec 2, 2022
Dec 7, 2019
Dec 1, 2023
Dec 1, 2023
Dec 1, 2023
Dec 15, 2023
Dec 9, 2020
Dec 20, 2018
Dec 20, 2018
Dec 20, 2018
Dec 20, 2018
Dec 13, 2018
Dec 25, 2023
Dec 15, 2023
Dec 1, 2023
Dec 1, 2023

Repository files navigation

semantic-release Build Status codecov

Status

2022

Run the currently configured default day

npm start

Run in debug mode for extended logging

DEBUG=1 npm start

Generate a boilerplate for a new day

npm run new

Special Instructions

Run by modifying index.js to point to the puzzle you want to execute.

2019:Day 02

Day 2 requires the use of BigInt which is added to Javascript in ES2020 and I didn't include a polyfill. This limits the solution to Javascript engines with BigInt support

2018:Day 14

Day 14 is fast but needs more memory to complete. Run node with 4GB of heap space: node --max_old_space_size=4096 index.js