advent-of-code-rust icon indicating copy to clipboard operation
advent-of-code-rust copied to clipboard

🎄Starter template for solving Advent of Code in Rust.

Results 8 advent-of-code-rust issues
Sort by recently updated
recently updated
newest added

[Implementation](https://github.com/fspoettel/advent-of-code-2022/blob/main/src/lib.rs) Currently experimenting with a higher sample count for benching on my solution repo, might add to template after this year concludes. Unfortunately, using `criterion` with binary crates is not...

question

[aoc-cli](https://github.com/scarvalhojr/aoc-cli) supports submitting inputs with a command. It would valuable to support automatic submissions for `solve` behind a flag, e.g. `cargo solve 04 --submit`.

enhancement
help wanted

[Implementation](https://github.com/fspoettel/advent-of-code-2022/blob/main/src/bin/scaffold.rs) Currently experimenting with a separately timed parser util on my solution repo, might add to template after this year concludes. Advantages: - parser code is not timed twice. -...

question

It would be nice to have a flag for reading only part 2 of a puzzle.

enhancement
good first issue

If you accidentally run the `cargo scaffold` command without the `--download` argument or want to redo an entire problem, a manual deletion of the file is required before running the...

I see that year can be specified at the command line, but it doesn't seem like the code/inputs themselves are organized in any particular way to support different years. Is...

enhancement