I have two arrays:
a = [[11, 12], [21, 22]]
b = [[101, 102], [201, 202]]
my desire result after combining is:
[[[11,21], [12,22]],[[101, 201],[102,202]]]
is it a possible way to do the above in a simple way without using for
or other type of looping? Thanks