File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22scaffold = "run --bin scaffold -- "
33download = "run --bin download -- "
44
5- day = "run --bin"
5+ solve = "run --bin"
66all = "run"
Original file line number Diff line number Diff line change @@ -76,8 +76,8 @@ Puzzle inputs are not checked into git. [Reasoning](https://old.reddit.com/r/adv
7676### Run solutions for a day
7777
7878``` sh
79- # example: `cargo day 01`
80- cargo day < day>
79+ # example: `cargo solve 01`
80+ cargo solve < day>
8181
8282# output:
8383# Running `target/debug/01`
@@ -90,7 +90,7 @@ cargo day <day>
9090# 9 (elapsed: 33.18µs)
9191```
9292
93- ` day ` is an alias for ` cargo run --bin ` . To run an optimized version for benchmarking, append the ` --release ` flag.
93+ ` solve ` is an alias for ` cargo run --bin ` . To run an optimized version for benchmarking, append the ` --release ` flag.
9494
9595Displayed _ timings_ show the raw execution time of your solution without overhead (e.g. file reads).
9696
You can’t perform that action at this time.
0 commit comments