2026-rff_mp/stepushovgs/labyrinth/source/strategy/Dijkstra.py

10 lines
322 B
Python
Raw Normal View History

from source.strategy.strategy import PathFindingStrategy
from source.classes.maze import Maze
from source.classes.cell import Cell
class Dijkstra(PathFindingStrategy):
def findPath(self, maze: Maze, start: Cell, exit: Cell):
pass
def __dijkstra__(self, maze: Maze, start: Cell, exit: Cell):
pass