tangled
alpha
login
or
join now
m1emi1em.dev
/
aoc2025
1
fork
atom
this repo has no description
1
fork
atom
overview
issues
pulls
pipelines
util: add minv
m1emi1em.dev
3 months ago
f6ce860c
7cc5cc03
+4
1 changed file
expand all
collapse all
unified
split
src
aoc2025
util.clj
+4
src/aoc2025/util.clj
···
146
146
"Takes a coll of numbers and turns them into a number"
147
147
[digits]
148
148
(->> digits (apply str) parse-int))
149
149
+
150
150
+
(def minv
151
151
+
"(partial map-indexed vector)"
152
152
+
(partial map-indexed vector))