show/hide this revision's text 2 added arrays tag
show/hide this revision's text 1

What is the best way to convert an array to a hash in Ruby

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}