Home

Awesome

šŸŽ„ Advent of Code 2024

Solving Advent of Code 2024 problems with Typescript and Deno!

Prerequisites

Setup

  1. Clone this repository

  2. Install dependencies:

    deno i
    

    there are none for now but this is just in case I add some later

Project Structure

.
ā”œā”€ā”€ day_XX/             # one folder a day
ā”‚   ā”œā”€ā”€ main.ts         # solution file
ā”‚   ā”œā”€ā”€ input.txt       # input file
ā””ā”€ā”€ deno.json           # deno config

Usage

  1. Put your input files as input.txt in the according folder (this repo doesn't include puzzles inputs).

  2. 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

License

MIT