generated from fspoettel/advent-of-code-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path09.rs
63 lines (52 loc) · 1.43 KB
/
09.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
use itertools::Itertools;
advent_of_code::solution!(9);
fn parse_input(input: &str) -> Vec<Vec<i32>> {
input
.lines()
.map(|line| line.split(' ').map(|s| s.parse::<i32>().unwrap()).collect())
.collect()
}
fn extrapolate_history(history: Vec<i32>) -> (i32, i32) {
if history.iter().all(|x| *x == 0) {
return (0, 0);
}
let first = *history.first().unwrap();
let last = *history.last().unwrap();
let history = history
.into_iter()
.tuple_windows()
.map(|(a, b)| b - a)
.collect_vec();
let (dfirst, dlast) = extrapolate_history(history);
(first - dfirst, last + dlast)
}
pub fn part_one(input: &str) -> Option<i32> {
let histories = parse_input(input);
histories
.into_iter()
.map(extrapolate_history)
.map(|(_, last)| last)
.sum1()
}
pub fn part_two(input: &str) -> Option<i32> {
let histories = parse_input(input);
histories
.into_iter()
.map(extrapolate_history)
.map(|(first, _)| first)
.sum1()
}
#[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(114));
}
#[test]
fn test_part_two() {
let result = part_two(&advent_of_code::template::read_file("examples", DAY));
assert_eq!(result, Some(2));
}
}