From 73d4c4ece4e713474c65f4100e4f9084a9a06281 Mon Sep 17 00:00:00 2001 From: Quentin Selle <62110608+quentinselle@users.noreply.github.com> Date: Sat, 7 Dec 2024 14:58:26 +0100 Subject: [PATCH] Fix typo --- src/day7.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/day7.rs b/src/day7.rs index 7ac3d61..5fbe53f 100644 --- a/src/day7.rs +++ b/src/day7.rs @@ -19,7 +19,7 @@ pub fn input_generator(input: &str) -> Vec { .map(|n| n.parse().unwrap()) .collect(), }); - ancc + acc }) }