-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.rs
50 lines (44 loc) · 1.18 KB
/
mod.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
use aoc;
pub fn solve() {
let input = aoc::input(2);
let mut score_one: isize = 0;
let mut score_two: isize = 0;
for line in input.lines() {
let row: Vec<_> = line.split_ascii_whitespace().collect();
let (a, b) = ((row[0].as_bytes()[0] - 64) as isize, (row[1].as_bytes()[0] - 87) as isize);
// Part One
// add own number
score_one += b;
if a == b {
// draw
score_one += 3;
} else {
if b - a == 1 {
// scissors > paper | paper > rock
score_one += 6
}
if b - a == -2 {
// rock > scissors
score_one += 6
}
}
// Part Two
score_two += match b {
1 => match a {
1 => 3,
2 => 1,
3 => 2,
_ => unreachable!(),
},
2 => 3 + a,
3 => 6 + match a {
1 => 2,
2 => 3,
3 => 1,
_ => unreachable!(),
},
_ => unreachable!(),
}
}
aoc::print_solution(2, &[score_one, score_two])
}