advent-of-code/2022/rust/src/day5.rs

41 lines
708 B
Rust
Raw Normal View History

2022-12-03 22:46:42 -06:00
mod common;
2022-12-04 01:55:11 -06:00
type Input = String;
type Result = usize;
fn processed_input(input: &str) -> Input {
input.to_owned()
2022-12-03 22:46:42 -06:00
}
2022-12-04 01:55:11 -06:00
fn part1(input: &Input) -> Result {
2022-12-03 22:46:42 -06:00
0
}
2022-12-04 01:55:11 -06:00
fn part2(input: &Input) -> Result {
2022-12-03 22:46:42 -06:00
0
}
2022-12-04 01:55:11 -06:00
fn main() {
let input = processed_input(&common::day_input(5));
common::show_answers(&part1(&input), &part2(&input))
// common::show_both_answers(&both_parts(&input))
}
// fn both_parts(input: &Input) -> (Result, Result) {
// (0, 0)
// }
2022-12-03 22:46:42 -06:00
#[cfg(test)]
mod tests {
use super::*;
const TEST_INPUT: &str = "";
#[test]
2022-12-04 01:55:11 -06:00
fn test() {
let input = processed_input(TEST_INPUT);
assert_eq!(part1(&input), 0);
assert_eq!(part2(&input), 0);
2022-12-03 22:46:42 -06:00
}
}