2026-rff_mp/pomelovsd/ExitMaze/Strategies/strat.py

6 lines
144 B
Python
Raw Normal View History

2026-05-22 17:15:29 +00:00
from abc import ABC, abstractmethod
class PathFindingStrategy(ABC):
@abstractmethod
def findPath(self, maze, start, exit):
pass