私は単純な配列を持っています
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"] }
私はルビーにまったく慣れておらず、この操作を行うために多くの時間を費やしていますが、運が悪い、助けはありませんか?