Solved day 5
This commit is contained in:
parent
c92c8843e9
commit
5030dfa2a4
11 changed files with 786 additions and 14 deletions
15
src/day06/part1.rs
Normal file
15
src/day06/part1.rs
Normal file
|
@ -0,0 +1,15 @@
|
|||
use crate::utilities::*;
|
||||
|
||||
pub fn part1() -> usize {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn test_part1() {
|
||||
assert_eq!(part1(), 0);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue