Skip to content

Instantly share code, notes, and snippets.

@pi3r
Created February 22, 2013 20:16
Show Gist options
  • Save pi3r/5016259 to your computer and use it in GitHub Desktop.
Save pi3r/5016259 to your computer and use it in GitHub Desktop.
uniq = []
inject([]) do |memo, e|
uniq_value = block ? block.call(e) : e
uniq.include?(uniq_value) ? memo.push(e) : uniq.push(uniq_value)
memo
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment