Skip to content

Commit 2a9cd61

Browse files
committed
minor
1 parent e73a81a commit 2a9cd61

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@ indicatif = "0.17.7"
1111
itertools = "0.12.0"
1212
lazy_static = "1.4.0"
1313
num = "0.4.1"
14-
rand = "0.8.5"
14+
rand = "0.8.5"
15+
# reqwest = { version = "0.12.24", features = ["blocking", "json"] }
16+
# serde = { version = "1.0.228", features = ["derive"] }
17+
# serde_json = "1.0.145"

src/bin/2025_10/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ fn solve2(input: &str) -> usize {
133133

134134
solutions.sort_by(|a, b| a.1.cmp(&b.1));
135135
let x = solutions[0].1;
136-
println!(
137-
"{:?} | Cost {} => Steps {} ",
138-
solutions[0].0, solutions[0].1, x
139-
);
136+
// println!(
137+
// "{:?} | Cost {} => Steps {} ",
138+
// solutions[0].0, solutions[0].1, x
139+
// );
140140
ans2 += x;
141141
}
142142
ans2

0 commit comments

Comments
 (0)