Function aoc::year2023::day23::graph_to_grid

source ยท
fn graph_to_grid(
    start: Point,
    end: Point,
    edges: &FastMap<Point, FastSet<Point>>,
    weight: &FastMap<(Point, Point), u32>,
) -> Input