mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 01:09:40 +08:00
Improvement
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user