- Google+ Tools
-
Make Google+ profile picture
Make Google plus banners for profile
Create and share your Google Plus profile banners.
- This function takes a string and returns a string in the same order with all duplicate elements removed. For example (running-dups "aaabbcccd") would return "abcd".
Remove duplicate characters from a string in Clojure
(defn running-dups [s] (apply str (distinct s)))
Comments
blog comments powered by Disqus