22 lines
388 B
Rust
22 lines
388 B
Rust
use crate::util::parse::ParseExt;
|
|
|
|
pub fn part1(input: &str) -> impl std::fmt::Display {
|
|
//let vec: Vec<Vec<u32>> = input.lines().map(|s| s.u32s().collect());
|
|
|
|
""
|
|
}
|
|
|
|
pub fn part2(input: &str) -> impl std::fmt::Display {
|
|
""
|
|
}
|
|
|
|
#[test]
|
|
fn test_part1() {
|
|
assert_eq!("0", part1("5 10 25").to_string())
|
|
}
|
|
|
|
#[test]
|
|
fn test_part2() {
|
|
assert_eq!("", part2("").to_string());
|
|
}
|