15 lines
207 B
Rust
15 lines
207 B
Rust
use crate::parse::*;
|
|
|
|
pub fn part2(input: &StructuredInput) -> usize {
|
|
unimplemented!()
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_part2() {
|
|
assert_eq!(0, 0);
|
|
}
|
|
}
|