aboutsummaryrefslogtreecommitdiffstats
path: root/day7/part1.clj
diff options
context:
space:
mode:
Diffstat (limited to 'day7/part1.clj')
-rw-r--r--day7/part1.clj18
1 files changed, 0 insertions, 18 deletions
diff --git a/day7/part1.clj b/day7/part1.clj
deleted file mode 100644
index f08e5b4..0000000
--- a/day7/part1.clj
+++ /dev/null
@@ -1,18 +0,0 @@
-(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 $)
- )
-