NumPy - Broadcasting
You have a 3D array of shape (2, 3, 1) representing 2 samples, 3 features, and 1 measurement each. You want to add a 2D array of shape (3, 4) representing 4 measurements for each feature. How can you broadcast these arrays to add them correctly?
