10 fish occupy a 5x5x5 grid of water 🐟. Each fish decides to move to a new (i,j,k) location given by the 2-d array below. If multiple fish end up occupying the same cell, the biggest fish eats the smaller fish. Determine which fish survive.
How to print fewer decimal places
Use np.set_printoptions(precision=3)
to show values with just three decimal places.