summary refs log tree commit diff homepage
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
parentSolve day 5 part 1 (diff)
downloadaoc-d6dea7f632e0ed12008fca3ef132396b2daa84d5.tar.gz
aoc-d6dea7f632e0ed12008fca3ef132396b2daa84d5.zip
Solve day 5 part 2
-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;
+		}
+	}
 }
README: document pkg-config for luajitJason A. Donenfeld 2014-01-17makefile: bump versionJason A. Donenfeld 2014-01-17mailmap: source before lighttpdJason A. Donenfeld 2014-01-17ui-shared: do not allow negative minutesJason A. Donenfeld 2014-01-17auth: document tweakables in lua scriptJason A. Donenfeld 2014-01-17repolist: make owner clickable to searchJason A. Donenfeld 2014-01-17ui-shared: move about tab all the way to the leftJason A. Donenfeld 2014-01-17filter: don't forget to reap the auth filterJason A. Donenfeld 2014-01-17cgit.c: free tmp variableJason A. Donenfeld 2014-01-17Switch to exclusively using global ctxLukas Fleischer 2014-01-16auth: have cgit calculate login addressJason A. Donenfeld 2014-01-16auth: lua string comparisons are time invariantJason A. Donenfeld 2014-01-16authentication: use hidden form instead of refererJason A. Donenfeld 2014-01-16auth: add basic authentication filter frameworkJason A. Donenfeld 2014-01-16t0111: Additions and fixesLukas Fleischer 2014-01-16parsing.c: Remove leading space from committerLukas Fleischer