Forráskód Böngészése

refactor advent of code 2023 day 01 from c to racket

Mistivia 1 éve
szülő
commit
dc6b5fe160

+ 0 - 14
advent-of-code/2023/01/Makefile

@@ -1,14 +0,0 @@
-all: run
-
-run: part1 part2
-	./part1
-	./part2
-
-part1: part1.c
-	gcc -g -I../lib/ ../lib/*.c part1.c -o part1
-
-part2: part2.c
-	gcc -g -I../lib/ ../lib/*.c part2.c -o part2
-
-clean:
-	rm part1 part2

+ 0 - 30
advent-of-code/2023/01/part1.c

@@ -1,30 +0,0 @@
-#include <stdio.h>
-#include <ctype.h>
-#include <string.h>
-
-#include "str.h"
-
-
-int main() {
-    FILE* fp = fopen("./input", "r");
-    int sum = 0;
-    while (1) {
-        char *line = str_strip(fgetline(fp));
-        if (line == NULL || strlen(line) == 0) {
-            break;
-        }
-        int d1 = -1, d2 = -1;
-        while (*line != '\0') {
-            if (isdigit(*line)) {
-                if (d1 == -1) d1 = *line - '0';
-                d2 = *line - '0';
-            }
-            line++;
-        }
-        if (d2 == -1) d2 = d1;
-        sum += d1 * 10 + d2;
-    }
-    printf("%d\n", sum);
-    return 0;
-}
-

+ 22 - 0
advent-of-code/2023/01/part1.rkt

@@ -0,0 +1,22 @@
+#lang racket
+
+(define fp (open-input-file "input"))
+(define sum 0)
+
+(define (get-lines fp)
+  (let loop ((lines '()))
+    (define l (read-line fp))
+    (if (eof-object? l)
+      (reverse lines)
+      (loop (cons l lines)))))
+
+(define lines (get-lines fp))
+
+(define (extract-number line)
+  (define number-list (filter char-numeric? (string->list line)))
+  (set! number-list (map (lambda (c)
+                           (string->number (list->string (list c))))
+                         number-list))
+  (+ (last number-list) (* 10 (car number-list))))
+
+(apply + (map extract-number lines))

+ 0 - 63
advent-of-code/2023/01/part2.c

@@ -1,63 +0,0 @@
-#include <stdio.h>
-#include <ctype.h>
-#include <string.h>
-#include <assert.h>
-
-#include "str.h"
-
-char *numbers[] = {
-    "zero",
-    "one",
-    "two",
-    "three",
-    "four",
-    "five",
-    "six",
-    "seven",
-    "eight",
-    "nine"
-};
-
-int find_number(const char *line) {
-    int matched = 0;
-    if (isdigit(*line)) return *line - '0';
-    for (int i = 0; i < 10; i++) {
-        matched = 1;
-        const char *p1 = numbers[i], *p2 = line;
-        while (*p1 != '\0' && *p2 != '\0') {
-            if (*p1 != *p2) {
-                matched = 0;
-                break;
-            }
-            p1++;
-            p2++;
-        }
-        if (matched && *p1 == '\0') return i;
-    }
-    return -1;
-}
-
-int main() {
-    FILE* fp = fopen("./input", "r");
-    int sum = 0;
-    while (1) {
-        char *line = str_strip(fgetline(fp));
-        if (line == NULL || strlen(line) == 0) {
-            break;
-        }
-        int d1 = -1, d2 = -1;
-        while (*line != '\0') {
-            int num = -1;
-            if ((num = find_number(line)) >= 0) {
-                if (d1 == -1) d1 = num;
-                d2 = num;
-            }
-            line++;
-        }
-        if (d2 == -1) d2 = d1;
-        sum += d1 * 10 + d2;
-    }
-    printf("%d\n", sum);
-    return 0;
-}
-

+ 36 - 0
advent-of-code/2023/01/part2.rkt

@@ -0,0 +1,36 @@
+#lang racket
+
+(define fp (open-input-file "input"))
+(define sum 0)
+
+(define (get-lines fp)
+  (let loop ((lines '()))
+    (define l (read-line fp))
+    (if (eof-object? l)
+      (reverse lines)
+      (loop (cons l lines)))))
+
+(define lines (get-lines fp))
+
+(define (replace-digit str)
+  (set! str (string-replace str "one" "o1ne"))
+  (set! str (string-replace str "two" "t2wo"))
+  (set! str (string-replace str "three" "t3hree"))
+  (set! str (string-replace str "four" "f4our"))
+  (set! str (string-replace str "five" "f5ive"))
+  (set! str (string-replace str "six" "s6ix"))
+  (set! str (string-replace str "seven" "s7even"))
+  (set! str (string-replace str "eight" "e8ight"))
+  (set! str (string-replace str "nine" "n9ine"))
+  str)
+
+(define (extract-number rawline)
+  (define line (replace-digit rawline))
+  (define number-list (filter char-numeric? (string->list line)))
+  (set! number-list (map (lambda (c)
+                           (string->number (list->string (list c))))
+                         number-list))
+  (+ (last number-list) (* 10 (car number-list))))
+
+(display (apply + (map extract-number lines)))
+(newline)