aoc

My solutions for the Advent of Code
git clone https://git.tronto.net/aoc
Download | Log | Files | Refs | README

a.rs (118B)


      1 mod common;
      2 use common::*;
      3 
      4 fn main() {
      5     let map = Map::from_stdin();
      6     println!("{}", map.total_free_area());
      7 }