diff --git a/sorting/selectionSort.py b/sorting/selectionSort.py index 78b4e36..2de5d91 100644 --- a/sorting/selectionSort.py +++ b/sorting/selectionSort.py @@ -17,5 +17,5 @@ def selectionSort(alist): alist[positionOfMax] = temp return alist -print(shortBubbleSort(alist)) +print(selectionSort(alist))