From 365e67056b68c7fc8bf32206a795a225e7efcf69 Mon Sep 17 00:00:00 2001 From: Max Nuding Date: Mon, 13 Dec 2021 07:45:12 +0100 Subject: [PATCH] clearer output --- Sources/13/13.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/13/13.swift b/Sources/13/13.swift index 8911097..6fd90fa 100644 --- a/Sources/13/13.swift +++ b/Sources/13/13.swift @@ -104,7 +104,7 @@ class Day13: Runnable { var s = "" for y in 0...maxY { for x in 0...maxX { - s += uniqueDots.contains(Coord(x: x, y: y)) ? "#" : "." + s += uniqueDots.contains(Coord(x: x, y: y)) ? "#" : " " } s += "\n" }