Update 100_Numpy_exercises.md

This commit is contained in:
kuzand 2018-11-02 15:56:53 +02:00 committed by GitHub
parent 5b18530d79
commit 90f676235a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1158,7 +1158,7 @@ uZ = Z[idx]
print(uZ) print(uZ)
# Author: Andreas Kouzelis # Author: Andreas Kouzelis
# For NumPy >= 1.13 # NumPy >= 1.13
uZ = np.unique(Z, axis=0) uZ = np.unique(Z, axis=0)
print(uZ) print(uZ)
``` ```