Explorar el Código

Grundgeruest. Ein Random Maze wird generiert.

ateubert %!s(int64=7) %!d(string=hace) años
padre
commit
894d63958b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Vorüberlegung_Maze.py

+ 1 - 1
Vorüberlegung_Maze.py

@@ -6,7 +6,7 @@ import random
6 6
 
7 7
 class Maze(object):
8 8
 
9
-    def __init__(self, width=21, height=21, exit_cell=(21, 1)):
9
+    def __init__(self, width=21, height=21, exit_cell=(1, 1)):
10 10
         self.width = width
11 11
         self.height = height
12 12
         self.exit_cell = exit_cell