A place to keep track of problems/solutions in Clojure.
The problems are from the 4clojure.
Handy clojure.core functions to keep in mind:
- Get
just(brew install just) - Run tests continuously in
--watchmode$ just watch
- Write empty solution method ➡️ write the test(s) ➡️ implement solution 🔁
# e.g. create q017.clj and q017_test.clj $ just create 017
# lint code
$ just lint
# format code
$ just format- Lint with babashka for quicker startup time?