Skip to content

Instantly share code, notes, and snippets.

@xenda
Created October 8, 2011 22:30
Show Gist options
  • Save xenda/1272990 to your computer and use it in GitHub Desktop.
Save xenda/1272990 to your computer and use it in GitHub Desktop.
c = [["student","sam"], ["student","george"], ["teacher","matz"]]
c.uniq!{ |s| s.first } #=> [["student", "sam"], ["teacher", "matz"]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment