aboutsummaryrefslogtreecommitdiff
path: root/2022/lib.lisp
AgeCommit message (Collapse)Author
2024-10-30Introduce tests for split-by-first and split-by-completelyAryadev Chavali
Allows one to split by string delimiter, or anything else.
2024-10-30Update lib.lisp to be more imperative and include a threading macroAryadev Chavali
Instead of (f (g (h (j (k x))))) we can write (-> (k x) (j it) (h it) (g it) (f it)) which is works really well for particularly large and complicated expressions.
2024-10-29Use every instead of allAryadev Chavali
2023-10-17Finished round 2 of puzzle-8Aryadev Chavali
2023-10-17Added all and remove-nthAryadev Chavali
Does what they say, all is the logical inverse to some.
2023-10-17split-by->split-by-first, split-completely->split-by-completelyAryadev Chavali
2023-10-17Version control lib.lispAryadev Chavali