diff --git a/day09/main.go b/day09/main.go index 47c5584..59d6edc 100644 --- a/day09/main.go +++ b/day09/main.go @@ -92,7 +92,6 @@ func depthDecompress(cmp []byte) []byte { ret = append(ret, bytes.Repeat(depthDecompress(recurBytes), mrkDupe)...) return append(ret, depthDecompress(remainder)...) - //return bytes.Repeat(depthDecompress(recurBytes), mrkDupe) + depthDecompress(remainder) } func fileToByteSlice(fn string) []byte {