sonobit commited on
Commit
8702445
·
1 Parent(s): a2c5804

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ aList = []
3
  bList = []
4
  def pushList(num):
5
  aList.append(int(num))
6
- bList = aList
7
  bList.sort()
8
  return aList, bList
9
 
 
3
  bList = []
4
  def pushList(num):
5
  aList.append(int(num))
6
+ bList = list(aList)
7
  bList.sort()
8
  return aList, bList
9