-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution_2016_12.rs
55 lines (42 loc) · 1.27 KB
/
solution_2016_12.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
use advent_of_code_2016::assembunny::{Instruction, N, State, parse_instructions};
use advent_of_code_common::parsing::Error;
fn solve_1(instructions: &[Instruction]) -> N {
State::new(instructions, &[]).run_to_termination().registers[&'a']
}
fn solve_2(instructions: &[Instruction]) -> N {
State::new(instructions, &[('c', 1)])
.run_to_termination()
.registers[&'a']
}
fn part_1(input: &str) -> Result<N, Error> {
parse_instructions(input).map(|instructions| solve_1(&instructions))
}
fn part_2(input: &str) -> Result<N, Error> {
parse_instructions(input).map(|instructions| solve_2(&instructions))
}
const DATA: &str = include_str!("../../resources/12.txt");
fn main() -> Result<(), Error> {
let result_1 = part_1(DATA)?;
println!("Part 1: {result_1:?}");
let result_2 = part_2(DATA);
println!("Part 2: {result_2:?}");
Ok(())
}
#[cfg(test)]
mod tests {
use super::*;
const TEST: &str = include_str!("../../resources/12-test.txt");
#[test]
fn test_solve_1_test() {
assert_eq!(part_1(TEST), Ok(42));
}
#[test]
fn test_solve_1_real() {
assert_eq!(part_1(DATA), Ok(317_993));
}
#[test]
#[ignore]
fn test_solve_2_real() {
assert_eq!(part_2(DATA), Ok(9_227_647));
}
}