NumPy - Aggregation Functions
You have a 3D numpy array
arr = np.array([[[1,2],[3,4]], [[5,6],[7,8]]]). What is the shape of the result when you run np.sum(arr, axis=1)?