From 8a8417207729cb92ae4f3038a3a8bd5e6a0c0ce7 Mon Sep 17 00:00:00 2001 From: Vincent Douillet Date: Sun, 5 Dec 2021 22:53:32 +0100 Subject: add expected results to previous days --- 02.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '02.c') diff --git a/02.c b/02.c index 30af77f..9814501 100644 --- a/02.c +++ b/02.c @@ -4,6 +4,8 @@ #include "input.h" #define INPUT "input/02.txt" +#define EXPECTED1 2272262L +#define EXPECTED2 2134882034L enum direction { forward, up, down }; @@ -47,7 +49,7 @@ void part1(struct input_str* input) { continue; } } - printf("%ld\n", forwardDst * downDst); + CHECK(forwardDst * downDst, EXPECTED1) } void part2(struct input_str* input) { @@ -70,7 +72,7 @@ void part2(struct input_str* input) { continue; } } - printf("%ld\n", forwardDst * downDst); + CHECK(forwardDst * downDst, EXPECTED2) } int main() { -- cgit v1.2.3