--- /dev/null
+(module net.journcy.aoc2022.day00
+ {autoload {c net.journcy.aoc2022.common}})
+
+(comment
+)
+
+(defn part1 [lines]
+ )
+
+(defn part2 [lines]
+ )
+
+(comment
+ (part1 (c.lines "input/day00.txt"))
+ (part2 (c.lines "input/day00.txt")))
--- /dev/null
+(module net.journcy.aoc2022.day04
+ {autoload {c net.journcy.aoc2022.common}})
+
+(defn parse-range [rangestr]
+ (c.map tonumber (c.split rangestr "-")))
+
+(defn parse-pair [pairstr]
+ (c.map parse-range (c.split pairstr ",")))
+
+(defn range-contains [r1 r2]
+ (let [[r1l r1h] r1
+ [r2l r2h] r2]
+ (or (and (>= r2l r1l) (<= r2h r1h))
+ (and (>= r1l r2l) (<= r1h r2h)))))
+
+(comment
+ (parse-range "2-4")
+ (parse-pair "2-4,6-8")
+ (range-contains (unpack (parse-pair "2-8,3-7")))
+ (range-contains (unpack (parse-pair "5-7,7-9")))
+ (range-contains (unpack (parse-pair "6-6,4-6")))
+ (part1 ["2-4,6-8"
+ "2-3,4-5"
+ "5-7,7-9"
+ "2-8,3-7"
+ "6-6,4-6"
+ "2-6,4-8"])
+ )
+
+
+(defn part1 [lines]
+ (->> lines
+ (c.map parse-pair)
+ (c.filter #(range-contains (unpack $1)))
+ (#)))
+
+(defn part2 [lines]
+ )
+
+(comment
+ (part1 (c.lines "input/day04.txt"))
+ (part2 (c.lines "input/day04.txt")))