Skip to content

Instantly share code, notes, and snippets.

@cabo
Created April 23, 2021 16:54
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 cabo/7d69b2e8030524cf59c6b14e06dd7483 to your computer and use it in GitHub Desktop.
Save cabo/7d69b2e8030524cf59c6b14e06dd7483 to your computer and use it in GitHub Desktop.
class Array
def uniq_c
each_with_object(Hash.new(0)) { _2[_1] += 1 }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment