summary refs log tree commit diff homepage
path: root/2020
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-12-05 00:16:40 -0500
committerJune McEnroe <june@causal.agency>2020-12-05 00:16:40 -0500
commitd6dea7f632e0ed12008fca3ef132396b2daa84d5 (patch)
tree0d224d554c22a9545eade0e5ab12a06dea2fa51d /2020
parentSolve day 5 part 1 (diff)
downloadaoc-d6dea7f632e0ed12008fca3ef132396b2daa84d5.tar.gz
aoc-d6dea7f632e0ed12008fca3ef132396b2daa84d5.zip
Solve day 5 part 2
Diffstat (limited to '2020')
-rw-r--r--2020/day05.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/2020/day05.c b/2020/day05.c
index 8d87fcb..ab39815 100644
--- a/2020/day05.c
+++ b/2020/day05.c
@@ -1,3 +1,4 @@
+#include <stdbool.h>
 #include <stdio.h>
 #include <stdlib.h>
 static int id(const char *s) {
@@ -16,8 +17,16 @@ static int id(const char *s) {
 int main(void) {
 	char s[11];
 	int max = 0;
+	bool ids[1024] = {0};
 	while (EOF != scanf("%s\n", s)) {
 		if (id(s) > max) max = id(s);
+		ids[id(s)] = true;
 	}
 	printf("%d\n", max);
+	for (int i = 1; i < 1024; ++i) {
+		if (ids[i-1] && !ids[i]) {
+			printf("%d\n", i);
+			break;
+		}
+	}
 }