forked from UNN/2026-rff_mp
8 lines
219 B
Python
8 lines
219 B
Python
from MazeBuilder import TextFileMazeBuilder
|
|
from BreadthFirstSearch import BFSStrategy
|
|
|
|
|
|
maze1 = TextFileMazeBuilder().buildFromFile("text.txt")
|
|
pathh = BFSStrategy.findPath(maze1, maze1.start, maze1.exit)
|
|
print(pathh)
|