Bir Ruby hash'i iki eşit boyutlu diziden nasıl oluşturulur?


92

İki dizim var

a = [:foo, :bar, :baz, :bof]

ve

b = ["hello", "world", 1, 2]

İstiyorum

{:foo => "hello", :bar => "world", :baz => 1, :bof => 2}

Bunu yapmanın bir yolu var mı?

Yanıtlar:


206
h = Hash[a.zip b] # => {:baz=>1, :bof=>2, :bar=>"world", :foo=>"hello"}

... kahretsin, Ruby'yi seviyorum.


3
Oldukça açık, ancak merak eden biri varsa, orijinal dizileri yeni hash'den almak istiyorsanız, sadece h.keysve diyebilirsiniz h.values.
bhaity

38

Bunu yapmanın biraz daha temiz bir yolu olduğunu belirtmek istedim:

h = a.zip(b).to_h # => {:foo=>"hello", :bar=>"world", :baz=>1, :bof=>2}

Yine de "Ruby'yi seviyorum" kısmında hemfikir olmalısınız!


16

Buna ne dersin?

[a, b].transpose.to_h

Ruby 1.9 kullanıyorsanız:

Hash[ [a, b].transpose ]

Efendi ve köle a.zip(b)gibi göründüğünü hissediyorum , ancak bu tarzda düzler.ab


1

Sadece merak uğruna:

require 'fruity'

a = [:foo, :bar, :baz, :bof]
b = ["hello", "world", 1, 2]

compare do
  jtbandes { h = Hash[a.zip b] }
  lethjakman { h = a.zip(b).to_h }
  junichi_ito1 { [a, b].transpose.to_h }
  junichi_ito2 { Hash[ [a, b].transpose ] } 
end

# >> Running each test 8192 times. Test will take about 1 second.
# >> lethjakman is similar to junichi_ito1
# >> junichi_ito1 is similar to jtbandes
# >> jtbandes is similar to junichi_ito2

compare do 
  junichi_ito1 { [a, b].transpose.to_h }
  junichi_ito2 { Hash[ [a, b].transpose ] } 
end

# >> Running each test 8192 times. Test will take about 1 second.
# >> junichi_ito1 is faster than junichi_ito2 by 19.999999999999996% ± 10.0%
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.