6 lines
144 B
Python
6 lines
144 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class PathFindingStrategy(ABC):
|
|
@abstractmethod
|
|
def findPath(self, maze, start, exit):
|
|
pass |