NumPy - Broadcasting
You have a 3D array
A with shape (2, 3, 4) and a 1D array B with shape (4,). You want to add B to each 2D slice of A along the last axis. Which code correctly uses broadcasting to do this?