summary refs log tree commit diff homepage
path: root/2019
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-12-04 01:45:21 -0500
committerJune McEnroe <june@causal.agency>2019-12-04 01:45:21 -0500
commit8273cf1e8c442c2fc8ec52ca0356dab9aa85974b (patch)
tree0be23d1330de513d0f15dd4cb3cff1d7d8c5809a /2019
parentSolve day 3 part 2 (diff)
downloadaoc-8273cf1e8c442c2fc8ec52ca0356dab9aa85974b.tar.gz
aoc-8273cf1e8c442c2fc8ec52ca0356dab9aa85974b.zip
Solve day 4 part 1
Diffstat (limited to '2019')
-rw-r--r--2019/day04.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/2019/day04.c b/2019/day04.c
new file mode 100644
index 0000000..3c31931
--- /dev/null
+++ b/2019/day04.c
@@ -0,0 +1,18 @@
+#include <stdio.h>
+#include <stdlib.h>
+int main(void) {
+	int min, max;
+	scanf("%d-%d", &min, &max);
+	int count = 0;
+	for (int n = min; n <= max; ++n) {
+		char str[7];
+		snprintf(str, sizeof(str), "%d", n);
+		int adj = 0, dec = 0;
+		for (int i = 1; i < 6; ++i) {
+			if (str[i] == str[i - 1]) adj = 1;
+			if (str[i] < str[i - 1]) dec = 1;
+		}
+		if (adj && !dec) count++;
+	}
+	printf("%d\n", count);
+}