From 34fc88fb62f1a52761616bb0417a1b7e02354a2c Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Fri, 9 Dec 2016 10:00:52 -0600 Subject: [PATCH] Clean up --- day09/main.go | 1 - 1 file changed, 1 deletion(-) 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 {