Google+ Tools
Make Google+ profile picture
Make Google plus banners for profile
Create and share your Google Plus profile banners.

Profile image for mrk studios Raynes on June 4, 2010
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".
Language
Lisp
Tags

Remove duplicate characters from a string in Clojure


(defn running-dups [s] (apply str (distinct s)))

Comments

blog comments powered by Disqus