(def strip (lst str) (rem [some _ lst] str)) arc> (strip "abc" "aghbcdt") "ghdt" arc> (strip "" "aghbcdt") "aghbcdt" arc> (strip () "aghbcdt") "aghbcdt" arc> (strip '(#\a #\t) "aghbcdt") "ghbcd"