aboutsummaryrefslogtreecommitdiff
path: root/2022/12/a.rs
blob: cf12ba3d93022ba34465d68f8833ba65a1bec2fc (plain)
1
2
3
4
5
6
7
8
mod common;
use common::*;

fn main() {
    let mut map = read_input();
    let end = |c: &Cell| c.is_start;
    println!("{}", shortest_path_back(&mut map, end));
}

Generated with cgit - Back to sebastiano.tronto.net