aboutsummaryrefslogtreecommitdiffstats
path: root/day10/part1.clj
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-10 10:24:47 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-10 10:24:47 -0500
commit42db1403e269fad7dfa1656b6c5cc4cda2dd6b14 (patch)
tree46d2ce48c09f8d24f2c33e643257ff9d38a91abc /day10/part1.clj
parentd4a5814cdc196c72ccdaa5ee9e3dea67bf45419e (diff)
day10: learn if-let, when-let, some->>
Diffstat (limited to 'day10/part1.clj')
-rw-r--r--day10/part1.clj22
1 files changed, 9 insertions, 13 deletions
diff --git a/day10/part1.clj b/day10/part1.clj
index 1424fd8..60ed1e6 100644
--- a/day10/part1.clj
+++ b/day10/part1.clj
@@ -3,19 +3,15 @@
(defn check-line [input]
(loop [in input open '()]
- (cond
- (empty? in)
- nil
- (and (contains? #{\} \) \] \>} (first in))
- (not= (to-closing (first open)) (first in)))
- (first in)
- :else
- (recur
- (rest in)
- (if (contains? #{\{ \( \[ \<} (first in))
- (conj open (first in))
- (rest open)
- )))))
+ (when-let [c (first in)]
+ (if (some->> (#{\} \) \] \>} c) (not= (first open)))
+ c
+ (recur
+ (rest in)
+ (if-let [op (to-closing c)]
+ (conj open op)
+ (rest open)
+ ))))))
(->> (slurp "./in")
(clojure.string/split-lines)