aboutsummaryrefslogtreecommitdiffstats
path: root/src/aoc_2022/dayXX.clj
blob: a29b64050335edf1c25485a236d39d87992496f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(ns aoc-2022.dayXX)

(require '[aoc-2022.utils :refer :all])

(defn task1 [rows]
  (->> rows
       count))

(defn task2 [rows]
  (->> rows
       count))

(run-aoc "dayXX" task1 task2)