Skip to content

Instantly share code, notes, and snippets.

@radar
Last active August 29, 2015 14:24
Show Gist options
  • Save radar/ccf3cf8259de1d09dfcc to your computer and use it in GitHub Desktop.
Save radar/ccf3cf8259de1d09dfcc to your computer and use it in GitHub Desktop.
def mode(array)
hash = Hash.new(0)
array.each do |i|
hash[i]+=1
end
return hash.max.select{|x, y| x }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment