Make code much more readable

Thanks for the idea, r/adventofcode!
This commit is contained in:
2021-12-13 09:03:11 -06:00
parent 4fc4bd2c20
commit 884e685c62

View File

@ -78,11 +78,11 @@ internal class Day13 : Day
{
if (grid.Contains((i, j)))
{
sb.Append('#');
sb.Append('');
}
else
{
sb.Append('.');
sb.Append(' ');
}
}
if (i < maxX)