aoc::year2024::day21

Function dfs

Source
fn dfs(
    cache: &mut FastMap<(char, char, usize), usize>,
    combinations: &FastMap<(char, char), Vec<String>>,
    code: &str,
    depth: usize,
) -> usize