diff options
| author | June McEnroe <programble@gmail.com> | 2016-12-03 23:20:01 -0500 |
|---|---|---|
| committer | June McEnroe <june@causal.agency> | 2020-11-22 00:13:50 -0500 |
| commit | 52930292a02ec7e4465edbd4eda9e551ef8f6a01 (patch) | |
| tree | 3aba70e2215cea9f740562c8573619f101baccfd /src/bin/day02.rs | |
| parent | Add tests to day 1 (diff) | |
| download | aoc-52930292a02ec7e4465edbd4eda9e551ef8f6a01.tar.gz aoc-52930292a02ec7e4465edbd4eda9e551ef8f6a01.zip | |
Add test to day 2
Diffstat (limited to 'src/bin/day02.rs')
| -rw-r--r-- | src/bin/day02.rs | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/src/bin/day02.rs b/src/bin/day02.rs index c5a7f11..21d101b 100644 --- a/src/bin/day02.rs +++ b/src/bin/day02.rs @@ -1,6 +1,6 @@ use std::io::{self, Read}; -#[derive(Debug, Clone, Copy)] +#[derive(Debug, Clone, Copy, PartialEq, Eq)] enum Keypad { K1, K2, K3, K4, K5, K6, @@ -47,10 +47,7 @@ impl Keypad { } } -fn main() { - let mut input = String::new(); - io::stdin().read_to_string(&mut input).unwrap(); - +fn solve(input: &str) -> Vec<Keypad> { let mut code = Vec::new(); let mut key = Keypad::K5; @@ -67,5 +64,18 @@ fn main() { code.push(key); } - println!("Part 1: {:?}", code); + code +} + +fn main() { + let mut input = String::new(); + io::stdin().read_to_string(&mut input).unwrap(); + + println!("Part 1: {:?}", solve(&input)); +} + +#[test] +fn part1() { + use Keypad::*; + assert_eq!(vec![K1, K9, K8, K5], solve("ULL\nRRDDD\nLURDL\nUUUUD")); } |