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

The gnome sort algorithm but stepped and timed.

Sorts a given Vec and returns the result and a Vec containing each step of the process, including the Duration of the process.