Auto urgent commit.

This commit is contained in:
2025-02-04 08:48:40 +01:00
parent 91c245e784
commit dcc8955763
3 changed files with 200 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
import maze_creator as mc
import random
random.seed(random.randint(-2147483647, 2147483647))
lab = mc.Labyrinth(100,100)
lab = mc.Labyrinth(10,10)
lab.set_start_end((0,0),(100,100))
lab.generate_maze()
print(lab.__str__())