Omnibus commited on
Commit
f5a1136
·
verified ·
1 Parent(s): af2e179

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -4,8 +4,9 @@ def build(size=5):
4
  tot = size*size
5
  r=0
6
 
7
-
8
- box=[b[x for x in range(size)]=b for b in range(tot)]
 
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