document interables

This commit is contained in:
David 2021-12-13 20:12:13 -05:00
parent 6b1552d65e
commit daf897cea2
1 changed files with 2 additions and 2 deletions

View File

@ -120,8 +120,8 @@ func partTwo() {
}
}
// print letters
for y := 0; y < 6; y++ {
for x := 0; x < 5*8; x++ {
for y := 0; y < 6; y++ { // six units tall
for x := 0; x < 5*8; x++ { // 5 units wide, 8 letters
if _, ok := points[point{x: x, y: y}]; ok {
fmt.Printf("#")
} else {