aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-15 12:03:47 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-15 12:03:47 -0500
commitaed41aa1f74252bb8a14f1750c2a6f27916795c8 (patch)
treef22bb8d5954d9a7ba1a162a33e08140b695c5810
parent453a97b8133c72490785dbc48e68d2dd102974f8 (diff)
parentd1bb4af495094eec997cbe7e99a382877c7c7b5a (diff)
add day 15
-rw-r--r--day14/part2.clj20
-rw-r--r--year2020/day1/part1.clj9
-rw-r--r--year2020/day1/part2.clj20
3 files changed, 38 insertions, 11 deletions
diff --git a/day14/part2.clj b/day14/part2.clj
index ede1b32..f5de5fe 100644
--- a/day14/part2.clj
+++ b/day14/part2.clj
@@ -10,8 +10,8 @@
(->> lines
(drop 2)
(map #(str/split % #" -> "))
- (map (fn [[pair ltr]]
- {pair (map str/join [[(first pair) ltr] [ltr (second pair)]])}))
+ (map (fn [[[a b] c]]
+ {(str/join [a b]) (map str/join [[a c] [c b]])}))
(reduce into)
))))))
@@ -28,13 +28,11 @@
(iterate #(grow-polymer % (second input))
(reduce #(update %1 %2 inc) blank-map (first input))))
-(let [polymer (nth growth-seq 40)
- results (filter pos?
- (map #(Math/ceil (/ % 2))
- (vals
- (reduce
- #(let [k (key %2) v (val %2)] (-> %1 (update (first k) + v) (update (second k) + v)))
- (zipmap (flatten (map (partial split-at 1) (keys polymer))) (repeat 0))
- polymer))))]
- (println (- (apply max results) (apply min results))))
+(let [final-polymer (nth growth-seq 40)
+ letter-counts (reduce
+ (fn [r [k v]] (-> r (update (first k) + v) (update (second k) + v)))
+ (zipmap (str/join (keys final-polymer)) (repeat 0))
+ final-polymer)
+ unique-counts (filter pos? (map #(Math/ceil (/ (val %) 2)) letter-counts))]
+ (println (- (apply max unique-counts) (apply min unique-counts))))
diff --git a/year2020/day1/part1.clj b/year2020/day1/part1.clj
new file mode 100644
index 0000000..100c6d3
--- /dev/null
+++ b/year2020/day1/part1.clj
@@ -0,0 +1,9 @@
+(require 'clojure.set)
+
+(->> (slurp "./in")
+ clojure.string/split-lines
+ (map read-string)
+ ((juxt set (comp set #(map (partial - 2020) %))))
+ (apply clojure.set/intersection)
+ (apply *)
+ (println))
diff --git a/year2020/day1/part2.clj b/year2020/day1/part2.clj
new file mode 100644
index 0000000..0b6ef9d
--- /dev/null
+++ b/year2020/day1/part2.clj
@@ -0,0 +1,20 @@
+(require 'clojure.set)
+
+(defn find-sum [sum lst]
+ (->> lst
+ ((juxt set (comp set #(map (partial - sum) %))))
+ (apply clojure.set/intersection)
+ (vec)))
+
+(->> (slurp "./in")
+ clojure.string/split-lines
+ ((comp set (partial map read-string)))
+ ((fn [lst]
+ (reduce
+ #(let [fnd (find-sum (- 2020 %2) (clojure.set/difference lst #{%2}))]
+ (if (empty? fnd) %1 [%2 fnd]))
+ []
+ lst)))
+ flatten
+ (apply *)
+ (println))