generated from fspoettel/advent-of-code-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
06.rs
47 lines (35 loc) · 1007 Bytes
/
06.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
advent_of_code::solution!(6);
use std::collections::HashSet;
fn parse_data(input: &str) -> &[u8] {
input.as_bytes()
}
fn part_x<const N: usize>(data: &[u8]) -> u32 {
data.windows(N)
.position(|w| w.iter().collect::<HashSet<&u8>>().len() == N) // TODO: zakaj to dela? .copied()?
.map(|x| x + N)
.unwrap() as u32
}
pub fn part_one(input: &str) -> Option<u32> {
let data = parse_data(input);
let result = part_x::<4>(data);
Some(result)
}
pub fn part_two(input: &str) -> Option<u32> {
let data = parse_data(input);
let result = part_x::<14>(data);
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(11));
}
#[test]
fn test_part_two() {
let result = part_two(&advent_of_code::template::read_file("examples", DAY));
assert_eq!(result, Some(26));
}
}