10 lines
278 B
Python
10 lines
278 B
Python
from source.strategy import PathFindingStrategy
|
|
from source.classes import Maze, Cell
|
|
|
|
|
|
class Dijkstra(PathFindingStrategy):
|
|
def findPath(self, maze: Maze, start: Cell, exit: Cell):
|
|
pass
|
|
|
|
def __dijkstra__(self, maze: Maze, start: Cell, exit: Cell):
|
|
pass |