2022-12-03 22:46:42 -06:00
|
|
|
mod common;
|
|
|
|
|
|
|
|
fn main() {
|
2022-12-04 01:25:36 -06:00
|
|
|
let input = common::day_input(5);
|
2022-12-03 22:46:42 -06:00
|
|
|
println!("Part 1: {}", part1(&input));
|
|
|
|
println!("Part 2: {}", part2(&input));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn part1(input: &str) -> i32 {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
|
|
|
|
fn part2(input: &str) -> i32 {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
const TEST_INPUT: &str = "";
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_part1() {
|
|
|
|
assert_eq!(part1(TEST_INPUT), 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_part2() {
|
|
|
|
assert_eq!(part2(TEST_INPUT), 0)
|
|
|
|
}
|
|
|
|
}
|