Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 657 Bytes

File metadata and controls

41 lines (29 loc) · 657 Bytes

Advent of Code 2024

My solutions for Advent of Code 2024 puzzles.

Prerequisites

Project Structure

├── dayXX/
│ ├── input.txt # Puzzle input
│ ├── input_test.txt # Example input
│ ├── main.ts # Solution implementation
│ └── main_test.ts # Tests
├── deno.json # Deno configuration
└── main.ts # Entry point

Commands

Run Solution

# Run latest day
deno task start

# Run specific day
deno task start --day=1

Development

# Watch mode
deno task dev

## Test
deno task test