I found another solution to the series exercise that uses clojure.string/join instead of (partial apply str). Check out https://exercism.io/tracks/clojure/exercises/series/solutions/abaeb59a223d470ba1ad30616a4e086b
Yes, this is a good example of why clojure.string/join
is usually preferred over apply str
That solution does miss the require of clojure.string
in the ns
form, apart from that I recommend it over the final solution today.
I have been recommending clojure.string/join
all month to the students I've mentored on Exercism, so I should have spotted that one :face_with_hand_over_mouth: