Skip to content

Commit 74fb850

Browse files
committed
Improvement
1 parent f52470e commit 74fb850

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: SelectionSort.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ def swap( A, x, y ):
1616

1717
print ("Enter numbers seprated by comma ")
1818
response = input()
19-
aList = list(response.split(','))
19+
aList = [int(item) for item in (response.split(','))]
2020
selectionsort(aList)

0 commit comments

Comments
 (0)