I'm seeking the most concise way to do this
Given the following Array:
['a','b','c']
how to get this:
{'a'=> 1,'b'=> 2, 'c'=> 3}
and
[['a',1],['b',2],['c',3]]
I have few solutions at mind, just want to see yours :)
|
1
|
I'm seeking the most concise way to do this Given the following Array:
how to get this:
and
I have few solutions at mind, just want to see yours :)
|
|||
|
|
|
|
and
|
||||||||||
|
|
|
|
||
|
|
|
If you want concise and fast, and 1.8.5 compatability, this is the best I've figured out:
The version of Martin's that works in 1.8.5 is:
But this is 2.5x slower than the above version. |
||
|
|
|
|
|
||
|
|