this repo has no description
Rust 96.7%
Other 3.3%
9 1 0

Clone this repository

https://tangled.org/tymek.me/aoc25
git@tangled.org:tymek.me/aoc25

For self-hosted knots, clone URLs may differ based on your setup.

README.md

Advent of Code 2025#

Usage#

cargo build --release

# run a specific day
./target/release/aoc25 3
# 17452 173300819005913

# run specific part
./target/release/aoc25 3 --part 1

# run all days
./target/release/aoc25 --all

# use test input
./target/release/aoc25 3 --test

Benchmarking#

hyperfine './target/release/aoc25 3'
hyperfine './target/release/aoc25 --all'

Project Structure#

src/
├── main.rs           # CLI runner
├── solutions/
│   ├── mod.rs        # exports
│   ├── day.rs        # Day trait + helpers
│   └── day*.rs       # solutions
inputs/
├── 1.txt, 2.txt ...  # puzzle inputs
└── 1.test ...        # test inputs