document interables
This commit is contained in:
parent
6b1552d65e
commit
daf897cea2
@ -120,8 +120,8 @@ func partTwo() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// print letters
|
// print letters
|
||||||
for y := 0; y < 6; y++ {
|
for y := 0; y < 6; y++ { // six units tall
|
||||||
for x := 0; x < 5*8; x++ {
|
for x := 0; x < 5*8; x++ { // 5 units wide, 8 letters
|
||||||
if _, ok := points[point{x: x, y: y}]; ok {
|
if _, ok := points[point{x: x, y: y}]; ok {
|
||||||
fmt.Printf("#")
|
fmt.Printf("#")
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user