Add other days

This commit is contained in:
2021-11-28 17:12:26 +01:00
parent 186d91d1b7
commit 89159137fe
25 changed files with 283 additions and 0 deletions

9
2021/src/day21.rs Normal file
View File

@@ -0,0 +1,9 @@
use std::io::Read;
pub fn part1(_input: &mut dyn Read) -> String {
todo!()
}
pub fn part2(_input: &mut dyn Read) -> String {
todo!()
}