To install dependencies:
bun install
Run days with:
# bun run <day>
bun run 12
Bigboy inputs are stored compressed with zstd because they sometimes might be too large to store on GitHub. To decompress them, run:
# zstd -d <file>
zstd -d src/day09/bigboy.txt.zst
(to compress them, run zstd -9 <file>
)