Skip to content

Instantly share code, notes, and snippets.

@emdeesee
Created June 20, 2013 16:49
Show Gist options
  • Save emdeesee/5824441 to your computer and use it in GitHub Desktop.
Save emdeesee/5824441 to your computer and use it in GitHub Desktop.
(defn first-unique [s]
(let [f (frequencies s)]
(first (filter #(= (f %) 1) s))))
@emdeesee
Copy link
Author

TIL about the frequencies function in clojure.core.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment