aboutsummaryrefslogtreecommitdiffstats
path: root/day4
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2022-12-04 08:22:52 -0500
committerClyne Sullivan <clyne@bitgloo.com>2022-12-04 08:22:52 -0500
commit23effc48309276caead656b366a8bd915196fef5 (patch)
tree76704fd263c079ec2b4fbb03d18d2e1d34b86b97 /day4
parent82429ac5d021135da9661c18f123ca5699692c15 (diff)
day4: try cleaning up predicates
Diffstat (limited to 'day4')
-rw-r--r--day4/both.clj16
1 files changed, 8 insertions, 8 deletions
diff --git a/day4/both.clj b/day4/both.clj
index a59098a..441ec16 100644
--- a/day4/both.clj
+++ b/day4/both.clj
@@ -1,14 +1,14 @@
+(defn within [n b e] (and (>= n b) (<= n e)))
+
(defn part1pred [lst]
- (or (and (>= (nth lst 0) (nth lst 2))
- (<= (nth lst 1) (nth lst 3)))
- (and (>= (nth lst 2) (nth lst 0))
- (<= (nth lst 3) (nth lst 1)))))
+ (or (and (>= (nth lst 0) (nth lst 2)) (<= (nth lst 1) (nth lst 3)))
+ (and (>= (nth lst 2) (nth lst 0)) (<= (nth lst 3) (nth lst 1)))))
(defn part2pred [lst]
- (or (and (>= (nth lst 0) (nth lst 2)) (<= (nth lst 0) (nth lst 3)))
- (and (>= (nth lst 1) (nth lst 2)) (<= (nth lst 1) (nth lst 3)))
- (and (>= (nth lst 2) (nth lst 0)) (<= (nth lst 2) (nth lst 1)))
- (and (>= (nth lst 3) (nth lst 0)) (<= (nth lst 3) (nth lst 1)))))
+ (or (within (nth lst 0) (nth lst 2) (nth lst 3))
+ (within (nth lst 1) (nth lst 2) (nth lst 3))
+ (within (nth lst 2) (nth lst 0) (nth lst 1))
+ (within (nth lst 3) (nth lst 0) (nth lst 1))))
(def count-filtered (comp println count filter))