aboutsummaryrefslogtreecommitdiffstats
path: root/year2021/day7/part1.clj
blob: f08e5b4054b08d434a98dd68e57b09e597144418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defn median [lst]
  (as-> (count lst) $
    (quot $ 2)
    (subvec (vec (sort lst)) (dec $) (inc $))
    (if (even? (count lst)) (apply + $) (second $))
    (quot $ 2)
    )
  )

(as-> (slurp "./in") $ ; "16,1,2,0,4,2,7,1,2,14"
      (clojure.string/split $ #",")
      (mapv read-string $)
      (map (partial - (median $)) $)
      (map #(Math/abs %) $)
      (apply + $)
      (println $)
      )