mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
Improvement
This commit is contained in:
parent
f52470e5de
commit
74fb850986
|
@ -16,5 +16,5 @@ def swap( A, x, y ):
|
|||
|
||||
print ("Enter numbers seprated by comma ")
|
||||
response = input()
|
||||
aList = list(response.split(','))
|
||||
aList = [int(item) for item in (response.split(','))]
|
||||
selectionsort(aList)
|
||||
|
|
Loading…
Reference in New Issue
Block a user