| 1 | # This program is a comparison based sorting technique. |
| 2 | # It is similar to selection sort in the sense that it first identifies the maximum element, |
| 3 | # and places it at the end. We repeat the process until the list is sorted. |
| 4 | # The sort algorithm has a time complexity of O(nlogn) |
nothing calls this directly
no test coverage detected