diff options
Diffstat (limited to '2022/18/a.rs')
| -rw-r--r-- | 2022/18/a.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/2022/18/a.rs b/2022/18/a.rs new file mode 100644 index 0000000..0713b06 --- /dev/null +++ b/2022/18/a.rs | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | mod common; | ||
| 2 | use common::*; | ||
| 3 | |||
| 4 | fn main() { | ||
| 5 | let map = Map::from_stdin(); | ||
| 6 | println!("{}", map.total_free_area()); | ||
| 7 | } | ||
