I have an array with following structure
Array(
[0] =>([0]=> "A")
[1] => ([0]=>"A", [1]=>"B")
[2] => ([0]=>"A", [1]=>"B", [2]=>"C")
[3] => ([0]=>"A")
[4] => ([0]=>"A", [1]=>"B")
This is abstract. The point is i have an array where there are elements having different counts of elements. Can any...