mirror of
https://github.com/onyx-and-iris/aoc2023.git
synced 2024-11-21 18:00:47 +00:00
fix docstring
This commit is contained in:
parent
eab63b0b36
commit
621a0dbd28
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user