在不知道数组维度的情况下,如何将数组转换为嵌套哈希?
例如:
[["Message", "hello"]]
至:
{{:message => "Hello"}}
或者:
[["Memory", [["Internal Memory", "32 GB"], ["Card Type", "MicroSD"]]]]
至:
{{:memory => {:internal_memroy => "32 GB", :card_type => "MicroSD"}}}
或者:
[["Memory", [["Internal Memory", "32 GB"], ["Card Type", "MicroSD"]]], ["Size", [["Width", "12cm"], ["height", "20cm"]]]]
至:
{ {:memory => {:internal_memroy => "32 GB", :card_type => "MicroSD"}, {:size => {:width => "12cm", :height => "20cm" } } }