我有一个简单的数组
array = ["apple", "orange", "lemon"]
array2 = [["apple", "good taste", "red"], ["orange", "bad taste", "orange"], ["lemon" , "no taste", "yellow"]]
每当数组中的元素与array2中每个元素的第一个元素匹配时,我如何转换为这个哈希?
hash = {"apple" => ["apple" ,"good taste", "red"],
"orange" => ["orange", "bad taste", "orange"],
"lemon" => ["lemon" , "no taste", "yellow"] }
我对红宝石很陌生,花了很多钱来做这个操作,但没有运气,有什么帮助吗?