Browse Source

solve day 15 part 1

Mistivia 11 months ago
parent
commit
79b3527eed
1 changed files with 19 additions and 0 deletions
  1. 19 0
      15/1.rkt

+ 19 - 0
15/1.rkt

@@ -0,0 +1,19 @@
+#lang racket
+
+(define line
+  (call-with-input-file "input"
+    (λ (fp) (read-line fp))))
+
+(define strs (string-split line ","))
+
+(define (calc-hash str)
+  (define len (string-length str))
+  (let loop ((i 0) (cur 0))
+    (if (< i len)
+      (let ()
+        (define c (string-ref str i))
+        (define ascii (char->integer c))
+        (loop (+ i 1) (modulo (* 17 (+ cur ascii)) 256)))
+      cur)))
+
+(apply + (map calc-hash strs))