aboutsummaryrefslogtreecommitdiffstats
path: root/day4/part2.clj
diff options
context:
space:
mode:
Diffstat (limited to 'day4/part2.clj')
-rw-r--r--day4/part2.clj12
1 files changed, 0 insertions, 12 deletions
diff --git a/day4/part2.clj b/day4/part2.clj
deleted file mode 100644
index d5929d6..0000000
--- a/day4/part2.clj
+++ /dev/null
@@ -1,12 +0,0 @@
-(->> (slurp "input")
- (#(clojure.string/split % #"[^0-9]"))
- (map read-string)
- (partition 4)
- (map
- #(or (and (>= (first %) (nth % 2)) (<= (first %) (nth % 3)))
- (and (>= (second %) (nth % 2)) (<= (second %) (nth % 3)))
- (and (>= (nth % 2) (first %)) (<= (nth % 2) (second %)))
- (and (>= (nth % 3) (first %)) (<= (nth % 3) (second %)))))
- (filter true?)
- count
- println)