J'ai ceci:
hash = { "a"=>["a", "b", "c"], "b"=>["b", "c"] }
et je veux arriver à ceci: [["a","b","c"],["b","c"]]
Cela semble comme il devrait fonctionner, mais il n'a pas:
hash.each{|key,value| value}
=> {"a"=>["a", "b", "c"], "b"=>["b", "c"]}
Toutes les suggestions?