NumPy - Array Manipulation
Given arrays:
Which code correctly combines
a = np.array([[1], [2], [3]]) b = np.array([[4, 5]])
Which code correctly combines
a and b into a single 2D array with shape (3, 3)?