From 10ebf884613524018eac709a9175f8ec74c5c130 Mon Sep 17 00:00:00 2001 From: Sunny Patel Date: Sat, 13 Oct 2018 13:19:27 +1100 Subject: [PATCH] UpdateselectionSort.py minor changes --- sorting/selectionSort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))