Merge the three arrays provided to form a 4x4 array.
[Hint: Use the np.transpose() function]
Input:
Array 1: 3x3
[[7, 13, 14],
[18, 10, 17],
[11, 12, 19]]
Array 2: 1-D array
[16, 6, 1]
Array 3: 1x4 array
[[5, 8, 4, 3]]
Output:
[[7, 13, 14, 5],
[18, 10, 17, 8],
[11, 12, 19, 4],
[16, 6, 1, 3]]