diff --git a/day-14/two.go b/day-14/two.go index 3cc4051..06d7d8b 100644 --- a/day-14/two.go +++ b/day-14/two.go @@ -2,7 +2,7 @@ package main const CYCLES = 1000000000 -// cycleOnce transposes and rolls a single image once +// cycleOnce transposes and rolls a single image four times (N,W,S,E) func cycleOnce(image img) { for i := 0; i < 4; i++ { for i, line := range image.transposed() {