finished day 4.
This commit is contained in:
parent
05d08c134b
commit
c92c8843e9
15 changed files with 1188 additions and 19 deletions
15
src/day05/part2.rs
Normal file
15
src/day05/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