From 1dcae63366bb07d4dcba9f68473c3303fa91384c Mon Sep 17 00:00:00 2001 From: Sven Palberg Date: Tue, 3 Dec 2024 20:48:48 +0100 Subject: [PATCH] better readme --- README.md | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 546dc73..7602963 100644 --- a/README.md +++ b/README.md @@ -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 +```