Go to file
2023-12-10 16:59:11 +01:00
Day01 better naming convention 2023-12-10 16:31:13 +01:00
Day02 better naming convention 2023-12-10 16:31:13 +01:00
Day03 better naming convention 2023-12-10 16:31:13 +01:00
Day04 better naming convention 2023-12-10 16:31:13 +01:00
Day05 better naming convention 2023-12-10 16:31:13 +01:00
Day06 better naming convention 2023-12-10 16:31:13 +01:00
Day07 better naming convention 2023-12-10 16:31:13 +01:00
Day08 better naming convention 2023-12-10 16:31:13 +01:00
Day09 better naming convention 2023-12-10 16:31:13 +01:00
Day10 mark loop traces with '+' 2023-12-10 16:20:06 +01:00
.gitignore ignore node_modules 2023-12-10 16:58:58 +01:00
package.json reformatted package.json 2023-12-08 22:38:54 +01:00
README.md basic README to explain repo 2023-12-10 16:59:11 +01:00
template.js created template for easy setup 2023-12-08 09:36:57 +01:00

Advent of Code 2023

About

This repository stores my solutions to the daily challenges of Advent of Code Calendar 2023.

Execution

Any of the scripts can be executed directly using NodeJS.

Example:

cd Day01/
node Part1.js

File explanation

A single challenge consists of 3 files:

  • input.txt: My input data, as provided by AoC.
  • Part1.js: My solution to part 1 of the challenge.
  • Part2.js: My solution to part 2 of the challenge.

Other special files:

  • template.js: A template file to use when initializing a new challenge.
  • sample.js: Example or test code; Ignored by git (see .gitignore).