আমার দুটি অ্যারে আছে
a = [:foo, :bar, :baz, :bof]
এবং
b = ["hello", "world", 1, 2]
আমি চাই
{:foo => "hello", :bar => "world", :baz => 1, :bof => 2}
কোন উপায় এই কাজ করতে?
উত্তর:
h = Hash[a.zip b] # => {:baz=>1, :bof=>2, :bar=>"world", :foo=>"hello"}
... জঘন্য, আমি রুবিকে ভালবাসি।
এটা কেমন?
[a, b].transpose.to_h
আপনি যদি রুবি ব্যবহার করেন 1.9:
Hash[ [a, b].transpose ]
আমি a.zip(b)
দেখতে মনে a
হয় গুরু এবং b
গোলাম, তবে এই স্টাইলে এগুলি সমতল।
শুধু কৌতূহলের স্বার্থে:
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%
h.keys
এবংh.values
।