Concat 2 arrays horizontally,
a = np.arange(1,17).reshape(4,4)
b = np.arange(17,33).reshape(4,4)
np.hstack((a,b))
np.concatenate((a,b), axis = 0)
A, B and C are correct option
np.concatenate((a,b), axis = 1)
Both A and B
how can be the answer is both a and b its wrong
