generated from fspoettel/advent-of-code-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
01.rs
51 lines (43 loc) · 1.24 KB
/
01.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
use itertools::Itertools;
advent_of_code::solution!(1);
fn get_lists(input: &str) -> (Vec<u32>, Vec<u32>) {
let numbers: Vec<u32> = input
.lines()
.flat_map(|line| line.split_whitespace().map(|x| x.parse::<u32>().unwrap()))
.collect();
let left = numbers.iter().step_by(2).copied().collect();
let right = numbers.iter().skip(1).step_by(2).copied().collect();
(left, right)
}
pub fn part_one(input: &str) -> Option<u32> {
let (left, right) = get_lists(input);
Some(
left.iter()
.sorted()
.zip(right.iter().sorted())
.map(|(l, r)| l.abs_diff(*r))
.sum(),
)
}
pub fn part_two(input: &str) -> Option<u32> {
let (left, right) = get_lists(input);
Some(
left.iter()
.map(|l| l * right.iter().filter(|r| *r == l).count() as u32)
.sum(),
)
}
#[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(11));
}
#[test]
fn test_part_two() {
let result = part_two(&advent_of_code::template::read_file("examples", DAY));
assert_eq!(result, Some(31));
}
}