1
0
Fork 0
mirror of https://github.com/dancojocaru2000/ai-project-idastar.git synced 2025-02-22 16:39:35 +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)
{
FormattedLabRow(line);
Console.WriteLine();
}
var algoBoard = new IdaStar.WorkingBoard(labyrinthIN.Select((row) => row.ToList()).ToList());