aoc::year2020::day01

Function two_sum

Source
fn two_sum(
    slice: &[usize],
    target: usize,
    hash: &mut [usize],
    round: usize,
) -> Option<usize>