Add skeleton for 2022

This commit is contained in:
2022-11-05 15:46:43 +01:00
parent d9d5947c3b
commit 0635141ac6
31 changed files with 444 additions and 0 deletions

9
2022/src/day23.rs Normal file
View File

@@ -0,0 +1,9 @@
use anyhow::Result;
pub fn part1(_input: &[u8]) -> Result<String> {
todo!()
}
pub fn part2(_input: &[u8]) -> Result<String> {
todo!()
}