From 415a41788bcbddbefd0b6c0691ab983b5c1c5306 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sat, 14 Dec 2024 19:34:28 +0000 Subject: [PATCH] remove print graph --- day-14/internal/two/solve.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/day-14/internal/two/solve.go b/day-14/internal/two/solve.go index 5a08197..5ddf19b 100644 --- a/day-14/internal/two/solve.go +++ b/day-14/internal/two/solve.go @@ -2,8 +2,6 @@ package two import ( "bytes" - - log "github.com/sirupsen/logrus" ) func Solve(buf []byte) (int, error) { @@ -33,8 +31,6 @@ func Solve(buf []byte) (int, error) { } } - log.Debugf("\n%s\n", graph.String()) - return maxAtSecond, nil }