How to build a Ruby hash out of two equally-sized arrays? -


मेरे पास दो सरणियाँ हैं

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

और

  b = ["हैलो", "विश्व", 1, 2]  

मुझे चाहिए

  {: foo = & gt; "हैलो",: बार = & gt; "विश्व",: बाज़ = & gt; 1,: बॉफ़ = & gt; 2}  

ऐसा करने का कोई भी तरीका?

  एच = हैश [a.zip b] # = & gt; {: Baz = & gt; 1,: bof = & gt; 2,: bar = & gt; "world",: foo = & gt; "हैलो"}  

... लानत, I प्यार रूबी।


Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -