nongmind commited on
Commit
1afcd75
1 Parent(s): f5ed412

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -9,7 +9,8 @@ def add2List(num,startRand,endRand):
9
  endRand = int(endRand)
10
 
11
  for i in range(num):
12
- r = rd.randint(1,100)
 
13
  aList.append(r)
14
  bList.append(r)
15
  bList.sort()
 
9
  endRand = int(endRand)
10
 
11
  for i in range(num):
12
+ #r = rd.randint(1,100)
13
+ r = rd.randint(startRand,endRand)
14
  aList.append(r)
15
  bList.append(r)
16
  bList.sort()