a little bit of scaffolding
This commit is contained in:
24
src/day00.rs
Normal file
24
src/day00.rs
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
pub fn process_part_1(input: &str) -> u32 {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn process_part_2(input: &str) -> u32 {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
const INPUT: &str = "";
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn day1() {
|
||||||
|
assert_eq!(process_part_1(INPUT), 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn day2() {
|
||||||
|
assert_eq!(process_part_2(INPUT), 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user