In Ruby, given an array in one of the following forms...
[apple, 1, banana, 2]
[[apple, 1], [banana, 2]]
...what is the best way to convert this into a hash in the form of...
{apple => 1, banana => 2}
|
1
|
|
|
|
|
|
Simply use For example:
|
|||
|
|
|
|
This but here is one way of converting an Array to a Hash:
Another sample:
|
||
|
|
|
Not sure if it's the best way, but this works:
|
||
|
|
|
|
If the numeric values are seq indexes, then we could have simpler ways... Here's my code submission, My Ruby is a bit rusty
|
||
|
|
|
|
The second form is simpler:
a = array, h = hash, r = return-value hash (the one we accumulate in), i = item in the array The neatest way that I can think of doing the first form is something like this:
|
|||
|
|