from abc import ABC, abstractmethod class PathFindingStrategy(ABC): @abstractmethod def findPath(self, maze, start, exit): pass