We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1b58fa commit 5118d8dCopy full SHA for 5118d8d
2024/Cargo.toml
@@ -8,3 +8,4 @@ pathfinding = "4.11.0"
8
rayon = "1.10.0"
9
regex = "1.10.2"
10
indexmap = { version = "2.7.0", features = ["rayon"] }
11
+hashbrown = { version = "0.15.2", features = ["rayon", "nightly"] }
2024/day11/Cargo.toml
@@ -12,3 +12,4 @@ itertools = { workspace = true }
12
pathfinding = { workspace = true }
13
rayon = { workspace = true }
14
indexmap = { workspace = true }
15
+hashbrown = { workspace = true }
2024/day11/src/main.rs
@@ -1,4 +1,4 @@
1
-use std::collections::HashMap;
+use hashbrown::HashMap;
2
3
fn part(input: &str, count: u64) -> u64 {
4
let mut stones = input
0 commit comments