Late start, but day 6 was suprisingly easy.

This commit is contained in:
gabe 2022-12-06 00:40:49 -06:00
parent 5030dfa2a4
commit fb12dc3954
10 changed files with 97 additions and 13 deletions

15
src/day07/part2.rs Normal file
View file

@ -0,0 +1,15 @@
use crate::utilities::*;
pub fn part2() -> usize {
unimplemented!()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_part2() {
assert_eq!(part2(), 0);
}
}