Browse Source

fixed initial display of input labyrinth

pull/1/head
DariusTFox24 3 years ago
parent
commit
f23c53fc82
  1. 1
      Program.cs

1
Program.cs

@ -7,6 +7,7 @@ System.Console.WriteLine("The input labyrinth: ");
foreach (string line in labyrinthIN) foreach (string line in labyrinthIN)
{ {
FormattedLabRow(line); FormattedLabRow(line);
Console.WriteLine();
} }
var algoBoard = new IdaStar.WorkingBoard(labyrinthIN.Select((row) => row.ToList()).ToList()); var algoBoard = new IdaStar.WorkingBoard(labyrinthIN.Select((row) => row.ToList()).ToList());

Loading…
Cancel
Save