Simple
Simply use Hash[*array_variable.flatten]
For example:
a1 = ['apple', 1, 'banana', 2]
h1 = Hash[*a1.flatten]
puts "h1: #{h1.inspect}"
a2 = [['apple', 1], ['banana', 2]]
h2 = Hash[*a2.flatten]
puts "h2: #{h2.inspect}"
|
3 | Correcting typo | ||
|
Simple Simply use For example:
|
||||
|
2 | Changed formatted of code sample | ||
|
Use Simple use For example:
|
||||
|
1 |
|
||
|
Use Hash[*array_variable.flatten] For example:
|
||||