4 lines
115 B
Python
4 lines
115 B
Python
|
|
class PathFindingStrategy:
|
||
|
|
|
||
|
|
def find_path(self, maze, start_cell, exit_cell):
|
||
|
|
raise NotImplementedError
|