Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定の順序であるデータの配列とキーの配列があります。
original_data = ['hello', 'world', 'one', 'two'] keys = [:greeting, :location, :first, :second]
このようなキーで各データを参照できるように、キーをデータにマップしたいと思います。
data[:greeting].should == original_data[0]
どうすればこれを達成できますか?
それは次のようになります。
data = Hash[keys.zip original_data]