Here is my solution to [problem 29 - Get the Caps](https://4clojure.oxal.org/#/problem/29): ```clojure (fn [s] (apply str (filter #(<= (int \A) (int %) (int \Z)) s))) ``` Although it is even listed in the Solution page, it does not pass any test. Is this a bug?