pub fn merge_sorted<T: Ord + Clone>(left: &[T], right: &[T]) -> Vec<T>
Merge two sorted vectors into a single sorted vector.