From 46cb2553599b2687d0f604517eb1d095d96edd90 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sun, 15 Dec 2019 16:22:13 +0100 Subject: [PATCH] Remove debug code Signed-off-by: Knut Ahlers --- day14.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/day14.go b/day14.go index 6fc01a9..290e9bc 100644 --- a/day14.go +++ b/day14.go @@ -3,7 +3,6 @@ package aoc2019 import ( "bufio" "io" - "log" "math" "os" "strconv" @@ -137,8 +136,6 @@ func solveDay14Part2(inFile string) (int64, error) { oreUsed = factory.calculateOreForFuel(test) ) - log.Printf("limit=%d used=%d min=%d max=%d test=%d", limit, oreUsed, minBound, maxBound, test) - switch { case minBound+1 == maxBound && oreUsed < limit: return test, nil