advent_of_code_2024::day_1

Function to_sorted_pairs

source
fn to_sorted_pairs(left: &Vec<u32>, right: &Vec<u32>) -> Vec<(u32, u32)>
Expand description

The first part of the solution to part 1. Pair the lowest integers in each list, then second lowest, and so on…