Skip to content

churris-x/advent-of-code_23

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of code 2023

Solutions to each day, in the following format:

1                   # day
├── eg.txt          # example input
├── input.txt       # actual puzzle input
├── solution.js     # contains the puzzle solution
└── todo.txt        # puzzle preamble and premise

Use

  1. Run $ npm i to install dotenv.

  2. Run $ npm start, you will be prompted for your AoC session token (cookie) to fetch your puzzle inputs. You can also manually write it to the .env file with the key AUTH_TOKEN=2343223432...

  3. Run $ npm run fetch <days> to fetch the desired days, you can fetch many days at once with brace expansion, eg: $ npm run fetch {1..5} will translate to $ npm run fetch 1 2 3 4 5

  4. Run puzzles with $ node <day>/solution.js if the coresponding folder existis

NPM scripts

  • $ npm run fetch <days> or input which days you want to fetch
  • $ npm run delete <days> or input which days you want to delete, confirm with y

Todo:

  • Parse and download the task exercise as well -> This extension works particularly well
  • Add functionality for multiple examples? Array?

FAQ

  • How to get your Auth token
    • Log in to the advent of code website, open the inspector got to Cookies. Click on session and copy the value.

Previous years

License

My solutions are released under the MIT License. Puzzles and inputs belong to Advent of Code

Releases

No releases published

Packages

No packages published