diff --git a/Sorting Algorithms/selection_sort.py b/Sorting Algorithms/selection_sort.py index 0ffeca0..59f412f 100644 --- a/Sorting Algorithms/selection_sort.py +++ b/Sorting Algorithms/selection_sort.py @@ -1,4 +1,5 @@ # Selection_Sort +#in this type of sorting we sort the length of list import sys A = [64, 25, 12, 22, 11]