diff --git a/02_selection_sort/python/01_selection_sort.py b/02_selection_sort/python/01_selection_sort.py index 3dca226..7fd80b4 100644 --- a/02_selection_sort/python/01_selection_sort.py +++ b/02_selection_sort/python/01_selection_sort.py @@ -7,6 +7,7 @@ def findSmallest(arr): for i in range(1, len(arr)): if arr[i] < smallest: smallest_index = i + smallest = arr[i] return smallest_index # Sort array