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());