1
0
Fork 0
mirror of https://github.com/dancojocaru2000/ai-project-idastar.git synced 2025-02-23 00:49:34 +02:00

fixed initial display of input labyrinth

This commit is contained in:
DariusTFox24 2021-12-02 00:02:22 +02:00
parent 88626505a7
commit f23c53fc82

View file

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