Improvement

This commit is contained in:
Harshil Darji 2016-07-28 22:33:24 +05:30
parent d44b888aeb
commit c5c2fa3b9d

View File

@ -1,4 +1,3 @@
print ("Enter numbers seprated by comma ")
def selectionsort( aList ):
for i in range( len( aList ) ):
least = i
@ -6,9 +5,16 @@ def selectionsort( aList ):
if aList[k] < aList[least]:
least = k
swap( aList, least, i )
aList = swap( aList, least, i )
print(aList)
def swap( A, x, y ):
tmp = A[x]
A[x] = A[y]
A[y] = tmp
return A
print ("Enter numbers seprated by comma ")
response = input()
aList = list(response.split(','))
selectionsort(aList)