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}
|
|
|
Simply use For example:
|
|||||||||||||||||
|
|
Warning! Solutions using flatten will not preserve Array keys or values! Building on @John Topley's popular answer, let's try:
This throws an error:
The constructor was expecting an Array of even length (e.g. ['k1','v1,'k2','v2']). What's worse is that a different Array which flattened to an even length would just silently give us a Hash with incorrect values. If you want to use Array keys or values, you can use map:
This preserves the Array key:
|
|||||
|
|
This but here is one way of converting an Array to a Hash:
Another sample:
|
|||||||
|
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:
|
||||
|
|
|
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 |
||||
|
|
|
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
|
|||
|
|
|
You can also simply convert a 2D array into hash using:
|
||||
|
|