aboutsummaryrefslogtreecommitdiff
path: root/advent-of-code/2023/03/1.rkt
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2024-02-25 20:11:54 +0800
committerMistivia <i@mistivia.com>2024-02-25 20:11:54 +0800
commit515ecbf5a20a8e432a998b0a543bedcb1bd64cf4 (patch)
tree6353c603a8cf0276553f420205f8d1c730a318ce /advent-of-code/2023/03/1.rkt
parente191b610c11326b587cf0b01fd6fc37b8d07bb19 (diff)
reorg code
Diffstat (limited to 'advent-of-code/2023/03/1.rkt')
-rw-r--r--advent-of-code/2023/03/1.rkt84
1 files changed, 0 insertions, 84 deletions
diff --git a/advent-of-code/2023/03/1.rkt b/advent-of-code/2023/03/1.rkt
deleted file mode 100644
index 5e86227..0000000
--- a/advent-of-code/2023/03/1.rkt
+++ /dev/null
@@ -1,84 +0,0 @@
-#lang racket
-
-(require "../../lib/utils.rkt")
-(require "../../lib/obj.rkt")
-
-(define (read-input)
- (call-with-input-file "input"
- (λ (fp)
- (list->vector (get-lines fp)))))
-
-(define schema (read-input))
-
-(define (char-at line col)
- (string-ref (vector-ref schema line) col))
-
-(define height (vector-length schema))
-(define width (string-length (vector-ref schema 0)))
-
-(define make-num (obj-maker 'line 'col 'value 'length))
-
-(define (scan-nums)
- (define nums '())
- (let loop ((i 0))
- (if (>= i height)
- (void)
- (let ()
- (let loop ((j 0))
- (define curline (vector-ref schema i))
- (if (>= j width)
- (void)
- (let ()
- (define next 1)
- (define (find-next)
- (if (or (>= (+ j next) 140)
- (not (char-numeric? (char-at i (+ j next)))))
- (void)
- (let ()
- (set! next (+ 1 next))
- (find-next))))
- (if (char-numeric? (char-at i j))
- (let ()
- (find-next)
- (define value (string->number (substring curline j (+ j next))))
- (set! nums (cons (make-num i j value next) nums)))
- (void))
- (loop (+ j next)))))
- (loop (+ 1 i)))))
- (reverse nums))
-(define nums (scan-nums))
-
-(define (is-symbol? c)
- (and (not (char-numeric? c))
- (not (char=? #\. c))))
-
-(define (collect-adjacent num)
- (define left
- (if (= 0 (num 'col))
- '()
- (list (char-at (num 'line) (- (num 'col) 1)))))
- (define right
- (if (= width (+ (num 'col) (num 'length)))
- '()
- (list (char-at (num 'line) (+ (num 'col) (num 'length))))))
- (define up
- (if (= 0 (num 'line))
- '()
- (string->list
- (substring (vector-ref schema (- (num 'line) 1))
- (max 0 (- (num 'col) 1))
- (min width (+ (num 'col) (num 'length) 1))))))
- (define down
- (if (= (- height 1) (num 'line))
- '()
- (string->list
- (substring (vector-ref schema (+ (num 'line) 1))
- (max 0 (- (num 'col) 1))
- (min width (+ (num 'col) (num 'length) 1))))))
- (append left right up down))
-
-(define (is-part-num? num)
- (findf is-symbol? (collect-adjacent num)))
-
-(apply + (map (λ (x) (x 'value))
- (filter is-part-num? nums))) \ No newline at end of file