Update app.py
Browse files
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 |
|