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}
|
feedback
|
|
Simply use For example:
| ||||
|
feedback
|
|
This but here is one way of converting an Array to a Hash:
Another sample:
| |||
feedback
|
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:
| ||||
|
feedback
|
|
Not sure if it's the best way, but this works:
| |||
|
feedback
|
|
If the numeric values are seq indexes, then we could have simpler ways... Here's my code submission, My Ruby is a bit rusty
| |||
|
feedback
|
|
Appending to the answer but using anonymous arrays and annotating: e.g.,
Taking that answer apart, starting from the inside: "a,b,c,d" is actually a string split on commas into an array zip that together with the following array [1,2,3,4] is an actual array The intermediate result is
flatten then transforms that to
which yields | ||||
|
feedback
|