Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamsebastiandev/advent-of-code
Advent of Code repository.
https://github.com/iamsebastiandev/advent-of-code
advent-of-code advent-of-code-2024 bun
Last synced: about 1 month ago
JSON representation
Advent of Code repository.
- Host: GitHub
- URL: https://github.com/iamsebastiandev/advent-of-code
- Owner: IamSebastianDev
- License: mit
- Created: 2024-12-01T09:11:16.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-01T09:46:08.000Z (about 1 month ago)
- Last Synced: 2024-12-01T10:36:36.247Z (about 1 month ago)
- Topics: advent-of-code, advent-of-code-2024, bun
- Language: TypeScript
- Homepage: https://adventofcode.com
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# @iasd/aoc
This is my current [Advent of Code](https://adventofcode.com) project. The setup currently comprises of a Runner and a small CLI to let you select a specific day to run. This will also ensure that a input file exists.
## How to
To install dependencies (After installing Bun):
```bash
bun install
```Add the input to the corresponding day into the correct input directory. Per year, there is a `inputs` directory. Add the day in the format `0{day}` or `{day}{day}` as directory. Then place a single `input.txt` file with your puzzle input inside. This should enable the CLI to run the respective day.
```bash
bun run solve
```