add export file

This commit is contained in:
2026-04-03 18:30:52 +02:00
parent 04c28a851f
commit 9fa121cdce
3 changed files with 10 additions and 7 deletions
+4
View File
@@ -66,6 +66,10 @@ class AMazeIng(BaseModel):
"""
return self.solver.solve(self.maze, self.height, self.width)
def export_maze(self) -> None:
with open(self.output_file, "w") as file:
file.write(self.__str__())
def __str__(self) -> str:
"""Return a string representation of the maze and its solution.