The proposed algorithm (Oyelami’s sort)
This proposed sorting algorithm divides the elements to be sorted
into subsequences just like Shellsort does but by first of all
comparing the first element with the last. If the last is less than the
first, the two swap positions, otherwise, they maintain their
positions. Later, the second element is compared with the second
to the last, if the second to the last element is smaller than the
second, they are swapped. Otherwise, they maintain their positions.