-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday23.janet
executable file
·30 lines (26 loc) · 915 Bytes
/
day23.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
#!/usr/bin/env janet
(def input (slurp "inputs/day23.txt"))
(def connections
(->>
input
(peg/match '(some (group (* (<- (2 :w)) "-" (<- (2 :w)) :s*))))
(map sort)))
(defn group [connections]
(def groups @[])
(each connection connections
(let [[a b] connection
a-matches (filter |(index-of a $) connections)
b-matches (filter |(index-of b $) connections)
a-bridges (flatten (map |(filter |(not= $ a) $) a-matches))
b-bridges (flatten (map |(filter |(not= $ b) $) b-matches))
bridges (filter |(index-of $ a-bridges) b-bridges)]
(each bridge bridges
(array/push groups (tuple ;(sorted [a b bridge]))))))
(var total 0)
(each group (distinct groups)
(if (not (empty? (filter |(string/has-prefix? "t" $) group)))
(do
(prin (inc total) ": ")
(pp group)
(++ total)))))
(group connections)