adding my maze need to be tested

This commit is contained in:
Maoake Teriierooiterai
2026-03-23 18:49:13 +01:00
parent 22c44333c1
commit e75e14110d
5 changed files with 129 additions and 14 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
from .Cell import Cell
from .Maze import Maze
from .MazeGenerator import MazeGenerator
from .MazeGenerator import MazeGenerator, DepthFirstSearch
from .MazeSolver import MazeSolver
__version__ = "1.0.0"
__author__ = "us"
__all__ = ["Cell", "Maze", "MazeGenerator", "MazeSolver"]
__all__ = ["Cell", "Maze", "MazeGenerator", "MazeSolver", "DepthFirstSearch"]