Update 100_Numpy_exercises.md

This commit is contained in:
kuzand 2018-11-02 15:33:41 +02:00 committed by GitHub
parent a7fc6a820b
commit 69d0e429a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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