fn to_sorted_pairs(left: &Vec<u32>, right: &Vec<u32>) -> Vec<(u32, u32)>
The first part of the solution to part 1. Pair the lowest integers in each list, then second lowest, and so on…