clearer output
This commit is contained in:
parent
aeb51d7c68
commit
365e67056b
@ -104,7 +104,7 @@ class Day13: Runnable {
|
|||||||
var s = ""
|
var s = ""
|
||||||
for y in 0...maxY {
|
for y in 0...maxY {
|
||||||
for x in 0...maxX {
|
for x in 0...maxX {
|
||||||
s += uniqueDots.contains(Coord(x: x, y: y)) ? "#" : "."
|
s += uniqueDots.contains(Coord(x: x, y: y)) ? "#" : " "
|
||||||
}
|
}
|
||||||
s += "\n"
|
s += "\n"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user