Solving Advent of Code 2024 problems with Typescript and Deno!
-
Clone this repository
-
Install dependencies:
deno i
there are none for now but this is just in case I add some later
.
├── day_XX/ # one folder a day
│ ├── main.ts # solution file
│ ├── input.txt # input file
└── deno.json # deno config
-
Put your input files as
input.txt
in the according folder (this repo doesn't include puzzles inputs). -
Run the code with:
deno run -A day_XX/main.ts
Don't forget to change XX with the correspondong day, e.g. day_01 / day_25
MIT