Skip to content

Instantly share code, notes, and snippets.

@secwang
Created March 23, 2015 03:04
Show Gist options
  • Select an option

  • Save secwang/c73a4a36187e440ac324 to your computer and use it in GitHub Desktop.

Select an option

Save secwang/c73a4a36187e440ac324 to your computer and use it in GitHub Desktop.
dups
(defn dups [seq]
(for [[id freq] (frequencies seq)
:when (> freq 1)]
id))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment