summary refs log tree commit diff homepage
path: root/2018
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-12-05 01:51:11 -0500
committerJune McEnroe <june@causal.agency>2020-11-22 00:14:25 -0500
commiteb2fee53e6de6873266944a4c47d748bc818ac69 (patch)
treeadba4fb0cfee685155fee1b74fb4b6c88616ec91 /2018
parentSolve day 4 part 2 (diff)
downloadaoc-eb2fee53e6de6873266944a4c47d748bc818ac69.tar.gz
aoc-eb2fee53e6de6873266944a4c47d748bc818ac69.zip
Solve day 5 part 1
Diffstat (limited to '2018')
-rw-r--r--2018/day05.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/2018/day05.c b/2018/day05.c
new file mode 100644
index 0000000..5cb9366
--- /dev/null
+++ b/2018/day05.c
@@ -0,0 +1,17 @@
+#include <ctype.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+int main() {
+	char buf[50000];
+	size_t len = fread(buf, 1, sizeof(buf), stdin);
+	for (size_t i = 0; i < len - 1; ++i) {
+		if (tolower(buf[i]) != tolower(buf[i + 1])) continue;
+		if (islower(buf[i]) == islower(buf[i + 1])) continue;
+		len -= 2;
+		memmove(&buf[i], &buf[i + 2], len - i);
+		i = (size_t)-1;
+	}
+	printf("%zu\n", len);
+}
r>2020-10-27Use SendEnv for cd host:pathJune McEnroe 2020-10-27Allow cd host:path over sshJune McEnroe 2020-10-07Use mandoc -T utf8 for text.June McEnroe 2020-09-20Add The Awakened KingdomJune McEnroe 2020-09-12Move /opt/local back, cheat port select to use system manJune McEnroe 2020-09-12Move /opt/local behind /usr againJune McEnroe 2020-09-12Enable toc in cgit renderings of man pagesJune McEnroe 2020-09-11Install mandoc on macOSJune McEnroe 2020-09-11Rewrite install script yet againJune McEnroe 2020-09-11Remove NetBSD from install scriptJune McEnroe 2020-09-11Use MacPorts rather than pkgsrcJune McEnroe 2020-09-11Add debian VM name to sshJune McEnroe 2020-09-11Add influencer tweetJune McEnroe 2020-09-10Add The Kingdom of GodsJune McEnroe 2020-09-07Add SunglassesJune McEnroe 2020-09-06Add Between the BreathsJune McEnroe 2020-09-04Open /dev/tty in nudgeJune McEnroe 2020-09-04Add nudgeJune McEnroe 2020-09-03Build fbclock with -lzJune McEnroe 2020-08-29Add tweets from retweetsJune McEnroe