Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created January 12, 2016 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/6d6ac5a0519764b1151c to your computer and use it in GitHub Desktop.
Save chuck0523/6d6ac5a0519764b1151c to your computer and use it in GitHub Desktop.
array = [1, 3, 4, 3]
puts array.size # 4
puts array.uniq # [1, 3, 4]
puts array.uniq.size # 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment