On Ruby. I have array of array c = [["a"], ["b"]]
How convert it to c = a + b
c = ["a", "b"]
for any array. Maybe it is possible not using other variables. All array inside not flatten.
d = [ [["a"], ["b"]], [["c"], ["d"]], [["e"], ["f"]] ]
I need [ [["a"], ["b"], ["c"], ["d"], ["e"], ["f"]] ]
Array#flattenright now?