aboutsummaryrefslogtreecommitdiff
path: root/2022/19/a.rs
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2025-07-06 09:48:32 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2025-07-06 09:48:32 +0200
commit58800a74af2c9f3578d3e62b3226aaf7c73aef87 (patch)
treea34e75378d99a16196fc95fb23e2d5d80f22e1bb /2022/19/a.rs
parent950d82569ddf137f1674095bfbe6bfff8fce663f (diff)
downloadaoc-58800a74af2c9f3578d3e62b3226aaf7c73aef87.tar.gz
aoc-58800a74af2c9f3578d3e62b3226aaf7c73aef87.zip
Finally, part 2 for Day 19 2022
Diffstat (limited to '2022/19/a.rs')
-rw-r--r--2022/19/a.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/2022/19/a.rs b/2022/19/a.rs
index 898debd..371d356 100644
--- a/2022/19/a.rs
+++ b/2022/19/a.rs
@@ -4,7 +4,7 @@ use common::*;
4 4
5fn main() { 5fn main() {
6 const MINUTES: i32 = 24; 6 const MINUTES: i32 = 24;
7 let mut mem = HashMap::<(Status, i32), i32>::new(); 7 let mut mem = HashMap::<(Status, i32), i64>::new();
8 let mut i = 1; 8 let mut i = 1;
9 let mut sum = 0; 9 let mut sum = 0;
10 for bp in read_blueprints_from_stdin() { 10 for bp in read_blueprints_from_stdin() {

Generated with cgit - Back to sebastiano.tronto.net