last few skeletons

This commit is contained in:
2022-12-23 21:38:09 +01:00
parent ea1c26772e
commit 8f3d66131e
4 changed files with 51 additions and 0 deletions

24
src/day24.rs Normal file
View File

@@ -0,0 +1,24 @@
pub fn process_part_1(_input: &str) -> u32 {
0
}
pub fn process_part_2(_input: &str) -> u32 {
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);
}
}

24
src/day25.rs Normal file
View File

@@ -0,0 +1,24 @@
pub fn process_part_1(_input: &str) -> u32 {
0
}
pub fn process_part_2(_input: &str) -> u32 {
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);
}
}

View File

@@ -23,3 +23,6 @@ pub mod day19;
pub mod day20;
pub mod day21;
pub mod day22;
pub mod day23;
pub mod day24;
pub mod day25;