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

44 lines
860 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-04 02:11:08 -06:00
100
2022-12-03 22:46:42 -06:00
}
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() {
2022-12-04 02:11:08 -06:00
let input_text = common::day_input(5);
eprintln!("{}\n\nAbove is your input file.\n\n", input_text);
let input = processed_input(&input_text);
2022-12-04 01:55:11 -06:00
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-04 02:11:08 -06:00
// assert_eq!(both_parts(&input), (0, 0));
2022-12-03 22:46:42 -06:00
}
}