cleanup + day 2 setup

This commit is contained in:
Thorn Avery 2022-12-02 10:07:37 +11:00
parent caed053830
commit d55f21183e
5 changed files with 74 additions and 2 deletions

0
src/problem02/input.txt Normal file
View file

10
src/problem02/mod.rs Normal file
View file

@ -0,0 +1,10 @@
static INPUT: &'static str = include_str!("input.txt");
pub fn solutionA() -> i32 {
return 0;
}
pub fn solutionB() -> i32 {
return 0;
}