Add skeletons for all days

This commit is contained in:
2023-11-26 14:40:16 +01:00
parent ce008e47da
commit 0a22995055
33 changed files with 618 additions and 0 deletions

7
2023/src/day12.rs Normal file
View File

@@ -0,0 +1,7 @@
pub fn part1(_input: &[u8]) -> anyhow::Result<String> {
anyhow::bail!("Not implemented")
}
pub fn part2(_input: &[u8]) -> anyhow::Result<String> {
anyhow::bail!("Not implemented")
}