Concat 2 arrays horizontally, a = np.arange(1,17).reshape(4,4) b = np.arange(17,33).reshape(4,4)

but answer is given np.hstack() and np.concatenate(a,b,axis=0)
but they bot giving different result