Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matyifkbt/aoc
https://github.com/matyifkbt/aoc
advent-of-code aoc aoc-2024-in-deno
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/matyifkbt/aoc
- Owner: MatyiFKBT
- Created: 2022-12-04T15:09:04.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-12-07T09:02:32.000Z (about 2 months ago)
- Last Synced: 2024-12-08T22:00:13.292Z (about 2 months ago)
- Topics: advent-of-code, aoc, aoc-2024-in-deno
- Language: TypeScript
- Homepage:
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Advent Of Code solutions
This repository stores all my [Advent Of Code](https://adventofcode.com) solutions. For the last years, I have been solving the puzzles with TypeScript.
You can check out 2024's solutions in the [2024](./src/2024) directory.
## Requirements
- [Deno](https://deno.land/) v2.1.3+
```bash
# getting the input
deno task prep [year] [day] [part] # defaults to the current day, and part 1# submitting the solution
deno task solve [year] [day] [part]
# defaults to the current day and the most recently edited part
```> [!NOTE]
> For 2024, I used utilities from this repository to programatically download the input and upload the solution:## 2024 Results
| Day | Part 1 | Part 2 |
| :---: | :---: | :---: |
| [Day 1](https://adventofcode.com/2024/day/1) | ⭐ | ⭐ |
| [Day 2](https://adventofcode.com/2024/day/2) | ⭐ | ⭐ |
| [Day 3](https://adventofcode.com/2024/day/3) | ⭐ | ⭐ |
| [Day 4](https://adventofcode.com/2024/day/4) | ⭐ | ⭐ |
| [Day 5](https://adventofcode.com/2024/day/5) | ⭐ | ⭐ |
| [Day 6](https://adventofcode.com/2024/day/6) | ⭐ | ⭐ |
| [Day 7](https://adventofcode.com/2024/day/7) | ⭐ | ⭐ |
| [Day 8](https://adventofcode.com/2024/day/8) | ⭐ | ⭐ |
| [Day 9](https://adventofcode.com/2024/day/9) | ⭐ | ⭐ |
| [Day 10](https://adventofcode.com/2024/day/10) | ⭐ | ⭐ |## 2023 Results
| Day | Part 1 | Part 2 |
| :---: | :---: | :---: |
| [Day 1](https://adventofcode.com/2023/day/1) | ⭐ | ⭐ |
| [Day 2](https://adventofcode.com/2023/day/2) | ⭐ | ⭐ |
| [Day 3](https://adventofcode.com/2023/day/3) | ⭐ | ⭐ |
| [Day 4](https://adventofcode.com/2023/day/4) | ⭐ | ⭐ |
| [Day 5](https://adventofcode.com/2023/day/5) | ⭐ | ⭐ |
| [Day 6](https://adventofcode.com/2023/day/6) | ⭐ | ⭐ |
| [Day 7](https://adventofcode.com/2023/day/7) | ⭐ | ⭐ |
| [Day 8](https://adventofcode.com/2023/day/8) | ⭐ | ⭐ |
| [Day 9](https://adventofcode.com/2023/day/9) | ⭐ | ⭐ |
| [Day 12](https://adventofcode.com/2023/day/12) | ⭐ | ⭐ |
| [Day 13](https://adventofcode.com/2023/day/13) | ⭐ | ⭐ |