Sunny Patel
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
sorting/selectionSort.py
|
|
@ -17,5 +17,5 @@ def selectionSort(alist): |
|
|
|
alist[positionOfMax] = temp |
|
|
|
return alist |
|
|
|
|
|
|
|
print(shortBubbleSort(alist)) |
|
|
|
print(selectionSort(alist)) |
|
|
|
|