What's the most efficient way to get all the hash keys from a given value.
my_hash = {"a"=>"aa", "b"=>"bb", "c"=>"bb"}
I want to give the hash "bb" as an input value and get all they keys (b,c) back as an array
Returns only one key:
my_hash.index("bb")
# returns only b
This works but seems inefficient:
my_hash.select{|k,v| v == 'bb' }.map{|i| i[0] }
# returns b and c
I've read all the docs. I feel like there's something obvious I'm missing.
Thanks!
Update:
I ended up switching the keys and values for the hash creation and going with an array for the values. This is a more efficient solution. See below for best ways to do value look ups if you have to.
New structure:
my_hash = {"aa"=>["a"],"bb"=>["b","c"]}