Compare commits
1 commit
dd6c5aa5c7
...
2e6180526d
Author | SHA1 | Date | |
---|---|---|---|
2e6180526d |
2 changed files with 3 additions and 2 deletions
|
@ -17,7 +17,7 @@ pub fn solve_part1(input: &Vec<usize>) -> usize {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
unimplemented!();
|
panic!("No pair summed to 20202!");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -36,5 +36,5 @@ pub fn solve_part2(input: &Vec<usize>) -> usize {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
unimplemented!();
|
panic!("No triplet summed to 20202!");
|
||||||
}
|
}
|
|
@ -1,3 +1,4 @@
|
||||||
use aoc_runner_derive::aoc_lib;
|
use aoc_runner_derive::aoc_lib;
|
||||||
pub mod day1;
|
pub mod day1;
|
||||||
|
pub mod day2;
|
||||||
aoc_lib! { year = 2020 }
|
aoc_lib! { year = 2020 }
|
Loading…
Reference in a new issue