Skip to content

Instantly share code, notes, and snippets.

@rubydubee
Created June 30, 2011 22:22
Show Gist options
  • Save rubydubee/1057426 to your computer and use it in GitHub Desktop.
Save rubydubee/1057426 to your computer and use it in GitHub Desktop.
Array Uniq
a= [1,2,4,1,5,2,4,1]
puts a.uniq # [1,2,4,5]
# or just commit it
a.uniq!
puts a #[1,2,4,5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment