| ;; ariarule's solution to Word Sorting | |
| ;; https://4clojure.com/problem/70 | |
| (fn sortwords [s] | |
| (letfn [(wordcomp [w x] | |
| (apply compare (map #(.toLowerCase %) [w x])))] | |
| (sort wordcomp (.split s "[^a-zA-Z]")))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment