diff --git a/100_Numpy_exercises.md b/100_Numpy_exercises.md index c93c54b..1e4c220 100644 --- a/100_Numpy_exercises.md +++ b/100_Numpy_exercises.md @@ -1157,8 +1157,8 @@ _, idx = np.unique(T, return_index=True) uZ = Z[idx] print(uZ) -# Another solution, for NumPy >= 1.13 # Author: Andreas Kouzelis +# For NumPy >= 1.13 uZ = np.unique(Z, axis=0) print(uZ) ```