aboutsummaryrefslogtreecommitdiffstats
path: root/day4/part1.clj
blob: 72efa35a587582514da8d88775b6e510d7ed556c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(->> (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)