from task2.strategyObjects.pathFindingStrategy import PathFindingStrategy from task2.mazeObjects.maze import Maze from task2.mazeObjects.cell import Cell class DFS(PathFindingStrategy): """Поиск в глубину – быстрый, но не обязательно кратчайший.""" def findPath(self, maze: Maze, start: Cell, exit: Cell): ...