Workspace: # AOC-2024
Advent of Code 2024 solutions implemented in TypeScript and JavaScript. Each day is organized into separate folders containing solutions for both parts of the puzzle.
-
Build the project:
npm run build
-
Watch for changes and rebuild automatically:
npm run watch
-
Execute solutions:
npm run execute <day>
Replace
<day>
with the day (e.g.,day-1
for Day 1). -
Create a new day folder with solution templates:
npm run build-day <day-number>
-
Install dependencies:
npm install
-
Build the project:
npm run build
-
Execute a day's solutions:
npm run execute -- <day>
Replace
<day>
with the day number you wish to execute. -
Add a new day:
npm run build-day <day-number>
This will create a new folder for the specified day with template solution files.