-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday6.janet
executable file
·63 lines (55 loc) · 1.7 KB
/
day6.janet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env janet
(def input (string/trim (slurp "inputs/day6.txt")))
(def rows
(->>
input
(string/split "\n")
(map |(array/concat @[] (string/bytes $)))))
(def num-rows (length rows))
(def num-cols (length (first rows)))
(def [available visited blocked] [(chr ".") (chr "X") (chr "#")])
(def dirs [:north :east :south :west])
(var next-space nil)
(var dir :north)
(var pos
(label start
(each row rows
(if-let [n (index-of (chr "^") row)]
(do
(put row n visited)
(return start @{:row (index-of row rows) :col n}))))))
(defn peek-next-space []
(cond
(and (= dir :north) (> (pos :row) 0))
(get (rows (dec (pos :row))) (pos :col))
(and (= dir :east) (< (pos :col) (dec num-cols)))
(get (rows (pos :row)) (inc (pos :col)))
(and (= dir :south) (< (pos :row) (dec num-rows)))
(get (rows (inc (pos :row))) (pos :col))
(and (= dir :west) (> (pos :col) 0))
(get (rows (pos :row)) (dec (pos :col)))
nil))
(defn move []
(case dir
:north (-- (pos :row))
:east (++ (pos :col))
:south (++ (pos :row))
:west (-- (pos :col))))
(while (set next-space (peek-next-space))
(case next-space
visited
(do
(move)
(print "Moving to already-visited " (pos :row) "," (pos :col)))
available
(do
(move)
(put (rows (pos :row)) (pos :col) visited)
(print "Moving to new " (pos :row) "," (pos :col)))
blocked
(do
(def next-dir-idx (mod (inc (index-of dir dirs)) (length dirs)))
(set dir (dirs next-dir-idx))
(print "Blocked! Turning " dir))))
(print "Off-map! Distinct positions visited: "
(length (filter |(= visited $) (array/join @[] ;rows))))