Improvement

This commit is contained in:
Harshil Darji 2016-07-29 11:24:26 +05:30
parent f52470e5de
commit 74fb850986

View File

@ -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)