mirror of
https://github.com/maoakeEnterprise/amazing.git
synced 2026-04-28 16:04:35 +02:00
8 lines
148 B
Python
8 lines
148 B
Python
from abc import ABC, abstractmethod
|
|
from .Maze import Maze
|
|
|
|
|
|
class MazeSolver(ABC):
|
|
@abstractmethod
|
|
def solve(self, maze: Maze) -> str: ...
|