I have two lists that contain thousands of numpy arrays.
I would like to find an efficient way to concatenate each numpy array that is located at the same index.
For example:
list1 = [[0,0,2],[0,5,6]]
list2 = [[3,4,6],[1,7,8]]
final_list = [[0,0,2,0,5,6],[3,4,6,1,7,8]]
I need to do this for a list of size 3300.