generated from fspoettel/advent-of-code-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
02.rs
73 lines (61 loc) · 1.64 KB
/
02.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
advent_of_code::solution!(2);
fn parse_data(input: &str) -> Vec<(char, char)> {
input
.lines()
.map(|x| x.as_bytes())
.map(|x| (x[0].into(), x[2].into()))
.collect()
}
pub fn part_one(input: &str) -> Option<u32> {
let data = parse_data(input);
// TODO: const fn VS fn?
fn score((x, y): (char, char)) -> u32 {
match (x, y) {
('A', 'X') => 4,
('A', 'Y') => 8,
('A', 'Z') => 3,
('B', 'X') => 1,
('B', 'Y') => 5,
('B', 'Z') => 9,
('C', 'X') => 7,
('C', 'Y') => 2,
('C', 'Z') => 6,
_ => unreachable!(),
}
}
let result = data.into_iter().map(score).sum();
Some(result)
}
pub fn part_two(input: &str) -> Option<u32> {
let data = parse_data(input);
fn score((x, y): (char, char)) -> u32 {
match (x, y) {
('A', 'X') => 3,
('A', 'Y') => 4,
('A', 'Z') => 8,
('B', 'X') => 1,
('B', 'Y') => 5,
('B', 'Z') => 9,
('C', 'X') => 2,
('C', 'Y') => 6,
('C', 'Z') => 7,
_ => unreachable!(),
}
}
let result = data.into_iter().map(score).sum();
Some(result)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_part_one() {
let result = part_one(&advent_of_code::template::read_file("examples", DAY));
assert_eq!(result, Some(15));
}
#[test]
fn test_part_two() {
let result = part_two(&advent_of_code::template::read_file("examples", DAY));
assert_eq!(result, Some(12));
}
}