aboutsummaryrefslogtreecommitdiffstats
path: root/day7
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-07 07:48:34 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-07 07:48:34 -0500
commit65df6869e9c1e35222d6ac85bd253ef1577a946e (patch)
tree8ab6c638560ac0dbe7ecdbe385d1b81ee5da687f /day7
parent945a0a01e00d1098c234690e40095414cd8d2256 (diff)
add day 7
Diffstat (limited to 'day7')
-rw-r--r--day7/part1.clj26
-rw-r--r--day7/part2.clj23
2 files changed, 49 insertions, 0 deletions
diff --git a/day7/part1.clj b/day7/part1.clj
new file mode 100644
index 0000000..43426f8
--- /dev/null
+++ b/day7/part1.clj
@@ -0,0 +1,26 @@
+(def input
+ (->> (slurp "./in") ; "16,1,2,0,4,2,7,1,2,14"
+ (#(clojure.string/split % #","))
+ (map read-string)
+ )
+ )
+
+(defn median [lst]
+ (let [cnt (count lst)
+ hlf (quot cnt 2)
+ srt (sort lst)]
+ (if (odd? cnt)
+ (nth srt hlf)
+ (quot (+ (nth srt hlf) (nth srt (dec hlf))) 2)
+ )
+ )
+ )
+
+(println
+ (->> input
+ (map (partial - (median input)))
+ (map #(if (neg? %) (- %) %))
+ (apply +)
+ )
+ )
+
diff --git a/day7/part2.clj b/day7/part2.clj
new file mode 100644
index 0000000..c051a6a
--- /dev/null
+++ b/day7/part2.clj
@@ -0,0 +1,23 @@
+(def input
+ (->> (slurp "./in") ;"16,1,2,0,4,2,7,1,2,14"
+ (#(clojure.string/split % #","))
+ (map read-string)
+ )
+ )
+
+(defn mean [lst]
+ (quot (apply + lst) (count lst))
+ )
+
+(defn calc-fuel [lst meen]
+ (->> input
+ (map (partial - meen))
+ (map #(if (neg? %) (- %) %))
+ (map #(apply + (range 1 (inc %))))
+ (apply +)
+ )
+ )
+
+(println (min (calc-fuel input (mean input))
+ (calc-fuel input (inc (mean input)))))
+