My solutions for Advent of Code 2024 challenges using Deno and TypeScript.
- Install Deno.
.
├── day_1/ # First day solutions
│ ├── day_1.ts
│ ├── day_1.test.ts
│ └── test_data.txt
├── utils/ # Shared utilities
│ └── utils.ts
├── deno.json # Project config
└── README.md
Day | Part 1 | Part 2 |
---|---|---|
01 | ⭐ | ⭐ |
02 | ⭐ | ⭐ |
03 | ⭐ | ☆ |
04 | ⭐ | ⭐ |
05 | ⭐ | ⭐ |
- Deno - Modern runtime for JavaScript and TypeScript
- TypeScript - Typed JavaScript
- @std/assert - Testing utilities
- 📁 Solutions organized by day in separate directories
- 🔧 Utility functions for common operations like file reading
- ✅ Comprehensive test cases included for each solution