-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,23 @@ | ||
# Advent of Code 2024 | ||
|
||
> [!NOTE] | ||
> Getting ready... | ||
[![JSR](https://jsr.io/badges/@aoc/2024)](https://jsr.io/@aoc/2024) | ||
|
||
Welcome to the Advent of Code 2024! This repository is where the magic happens, | ||
with all solutions written in TypeScript and running on Deno – the best anagram | ||
of Node! Dive into the daily challenges and explore the code. Happy coding and | ||
may your algorithms be ever efficient! | ||
|
||
## CLI | ||
|
||
You don't have to check out this repository to test my code against your inputs! | ||
Simply run the published cli via JSR: | ||
|
||
```bash | ||
deno run -R jsr:@aoc/2024 --help | ||
``` | ||
|
||
or directly with day and input: | ||
|
||
```bash | ||
deno run -R jsr:@aoc/2024 -d 2 -i ./inputs/2.txt | ||
``` |