Late start, but day 6 was suprisingly easy.
This commit is contained in:
parent
5030dfa2a4
commit
fb12dc3954
10 changed files with 97 additions and 13 deletions
15
src/day07/part2.rs
Normal file
15
src/day07/part2.rs
Normal 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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue