pub fn slowsort<T>(arr: Vec<T>) -> Vec<T> where
    T: PartialEq + PartialOrd + Clone + Copy
Expand description

The slowsort algorithm.

Sorts the given Vec and returns the result.