Skip to content

Instantly share code, notes, and snippets.

@ndonolli
Created June 15, 2020 16:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ndonolli/4265876c47dfd9ad121e678412003faa to your computer and use it in GitHub Desktop.
Save ndonolli/4265876c47dfd9ad121e678412003faa to your computer and use it in GitHub Desktop.
(defn uniques [coll]
(let [freqs (frequencies coll)]
(filter #(= 1 (get freqs %)) coll)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment