Day 4 part 2

It passes the tests but the real solution is incorrect :(
This commit is contained in:
2018-12-17 23:34:54 -05:00
parent dc1211cae2
commit 3f74dcb73e
2 changed files with 26 additions and 0 deletions

View File

@@ -15,4 +15,5 @@ fn main() {
println!("{}", day3::solve_part2().unwrap().unwrap());
println!("Day 4:");
println!("{}", day4::solve_part1().unwrap());
println!("{}", day4::solve_part2().unwrap());
}