aboutsummaryrefslogtreecommitdiffstats
path: root/day7/part1.clj
diff options
context:
space:
mode:
Diffstat (limited to 'day7/part1.clj')
-rw-r--r--day7/part1.clj26
1 files changed, 26 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 +)
+ )
+ )
+