Update app.py
Browse files
app.py
CHANGED
@@ -4,8 +4,9 @@ def build(size=5):
|
|
4 |
tot = size*size
|
5 |
r=0
|
6 |
|
7 |
-
|
8 |
-
|
|
|
9 |
print(box)
|
10 |
box_cent=int(tot/2)
|
11 |
num_h,num_v=0,0
|
|
|
4 |
tot = size*size
|
5 |
r=0
|
6 |
|
7 |
+
box=[]
|
8 |
+
box_o=[x for x in range(size)]
|
9 |
+
box.append(box_o) for i in range(size)
|
10 |
print(box)
|
11 |
box_cent=int(tot/2)
|
12 |
num_h,num_v=0,0
|