2026-05-21 21:05:50 +00:00
|
|
|
from source.strategy import PathFindingStrategy
|
|
|
|
|
from source.classes import Maze, Cell
|
|
|
|
|
|
2026-05-20 18:42:45 +00:00
|
|
|
|
|
|
|
|
class Dijkstra(PathFindingStrategy):
|
|
|
|
|
def findPath(self, maze: Maze, start: Cell, exit: Cell):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def __dijkstra__(self, maze: Maze, start: Cell, exit: Cell):
|
|
|
|
|
pass
|