diff options
Diffstat (limited to 'src/aoc_2022/utils.clj')
| -rw-r--r-- | src/aoc_2022/utils.clj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/aoc_2022/utils.clj b/src/aoc_2022/utils.clj index c59d498..cfa9530 100644 --- a/src/aoc_2022/utils.clj +++ b/src/aoc_2022/utils.clj @@ -21,6 +21,9 @@ (def split-by #(split-by' %1 '() %2)) +(defn transpose [m] + (apply mapv vector m)) + ; Advent of Code specific (defn read-aoc [day] |
