10 lines
312 B
Python
10 lines
312 B
Python
|
|
from source.strategy.strategy import PathFindingStrategy
|
||
|
|
from source.classes.maze import Maze
|
||
|
|
from source.classes.cell import Cell
|
||
|
|
|
||
|
|
class DFS(PathFindingStrategy):
|
||
|
|
def findPath(self, maze: Maze, start: Cell, exit: Cell):
|
||
|
|
pass
|
||
|
|
|
||
|
|
def __dfs__(self, maze: Maze, start: Cell, exit: Cell):
|
||
|
|
pass
|