aboutsummaryrefslogtreecommitdiffstats
path: root/day4/part1.clj
diff options
context:
space:
mode:
Diffstat (limited to 'day4/part1.clj')
-rw-r--r--day4/part1.clj12
1 files changed, 0 insertions, 12 deletions
diff --git a/day4/part1.clj b/day4/part1.clj
deleted file mode 100644
index 72efa35..0000000
--- a/day4/part1.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))
- (<= (second %) (nth % 3)))
- (and (>= (nth % 2) (first %))
- (<= (nth % 3) (second %)))))
- (filter true?)
- count
- println)