From f23c53fc8262601426eb23e7b6bd33c58dcd043d Mon Sep 17 00:00:00 2001 From: DariusTFox24 Date: Thu, 2 Dec 2021 00:02:22 +0200 Subject: [PATCH] fixed initial display of input labyrinth --- Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Program.cs b/Program.cs index f6dfe88..42f3f4a 100644 --- a/Program.cs +++ b/Program.cs @@ -7,6 +7,7 @@ System.Console.WriteLine("The input labyrinth: "); foreach (string line in labyrinthIN) { FormattedLabRow(line); + Console.WriteLine(); } var algoBoard = new IdaStar.WorkingBoard(labyrinthIN.Select((row) => row.ToList()).ToList());