Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```