this repo has no description
1# Advent of Code 2025
2
3## Usage
4
5```bash
6cargo build --release
7
8# run a specific day
9./target/release/aoc25 3
10# 17452 173300819005913
11
12# run specific part
13./target/release/aoc25 3 --part 1
14
15# run all days
16./target/release/aoc25 --all
17
18# use test input
19./target/release/aoc25 3 --test
20```
21
22## Benchmarking
23
24```bash
25hyperfine './target/release/aoc25 3'
26hyperfine './target/release/aoc25 --all'
27```
28
29## Project Structure
30
31```
32src/
33├── main.rs # CLI runner
34├── solutions/
35│ ├── mod.rs # exports
36│ ├── day.rs # Day trait + helpers
37│ └── day*.rs # solutions
38inputs/
39├── 1.txt, 2.txt ... # puzzle inputs
40└── 1.test ... # test inputs
41```