From 7cd872458bc2d0f773c1f625a9ea866771da2e18 Mon Sep 17 00:00:00 2001 From: oabrivard Date: Tue, 5 Dec 2023 12:27:53 +0100 Subject: [PATCH] Completed part 1 of Day 5 puzzle --- day5/day5_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day5/day5_test.go b/day5/day5_test.go index 14ffb65..235e49f 100644 --- a/day5/day5_test.go +++ b/day5/day5_test.go @@ -110,6 +110,6 @@ func TestRangedFindClosestLocationWithInput(t *testing.T) { result := FindRangedClosestLocation(lines) if result != 1181555926 { - t.Fatalf("expected 1181555926, got %d", result) + t.Fatalf("expected 37806487, got %d", result) } }