From 8bef58d8db15f6ea0fd4ba48a17f13050e79fc48 Mon Sep 17 00:00:00 2001 From: Christopher De Vries Date: Thu, 11 Apr 2024 12:57:48 -0400 Subject: [PATCH] wip --- day22p1/solution.go | 1 - 1 file changed, 1 deletion(-) diff --git a/day22p1/solution.go b/day22p1/solution.go index 4cdb079..2dba03c 100644 --- a/day22p1/solution.go +++ b/day22p1/solution.go @@ -40,7 +40,6 @@ func parseLine(ln string) Brick { parts := strings.Split(ln, "~") return Brick{parseVector(parts[0]), parseVector(parts[1])} - } func parseVector(v string) Vector {