我有一个hash
像这样的哈希:
hash = {"Addaptive Accessibility"=>["one","two"],
"Atmosphere (Feeling/Safety)"=>["three", "four"],
"Aquatics (Size)"=>["five", "six"]}
然后我有一个数组array
:
array = ["one","seven"]
我需要在我的数组中搜索每个单词的哈希,如果找到这个单词,我需要key
从哈希中返回相关的。像这样的东西:
array.each do |word|
if hash.include? word
puts key
end
end
我怎样才能写出来,并且写得更好?