added template for AOC.
This commit is contained in:
commit
ea7220bb00
7 changed files with 95 additions and 0 deletions
13
src/template/part2.rs
Normal file
13
src/template/part2.rs
Normal file
|
@ -0,0 +1,13 @@
|
|||
pub fn part2() -> usize {
|
||||
return 0;
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod day01 {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn test_part2() {
|
||||
assert_eq!(part2(), 0);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue