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 }