-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path22-1.janet
65 lines (54 loc) · 1.41 KB
/
22-1.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
64
65
(def input
(->> (slurp "22-input.txt")
(string/trim)
(string/split "\n")))
(def num-rows (length input))
(def num-cols (length (first input)))
(def infected @{})
(var counter 0)
(for r 0 num-rows
(for c 0 num-cols
(if (= (get (get input r) c) 35)
(put infected [r c] true))))
(def virus
(let [row (/ (- num-rows 1) 2)
col (/ (- num-cols 1) 2)]
@{:facing :up
:pos [row col]}))
(defn infected? (pos)
(get infected pos))
(defn turn-left (virus)
(put virus :facing
(case (virus :facing)
:up :left
:right :up
:down :right
:left :down)))
(defn turn-right (virus)
(put virus :facing
(case (virus :facing)
:up :right
:right :down
:down :left
:left :up)))
(defn walk (virus)
(let [[r c] (virus :pos)]
(put virus :pos
(case (virus :facing)
:up [(- r 1) c]
:right [r (+ c 1)]
:down [(+ r 1) c]
:left [r (- c 1)]))))
(defn burst (virus infected)
(if (infected? (virus :pos))
(do
(turn-right virus)
(put infected (virus :pos) nil))
(do
(turn-left virus)
(++ counter)
(put infected (virus :pos) true)))
(walk virus))
(for i 0 10000
(burst virus infected))
(pp counter)