Merge pull request #63 from SebastianoF/master

Spaces removed from filenames. Issue #54 addressed
This commit is contained in:
Nicolas P. Rougier 2018-06-07 17:09:10 +02:00 committed by GitHub
commit 15f4412342
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 3 additions and 3 deletions

View File

@ -171,7 +171,7 @@ print(Z)
```python
print(np.unravel_index(100,(6,7,8)))
print(np.unravel_index(99,(6,7,8)))
```
#### 21. Create a checkerboard 8x8 matrix using the tile function (★☆☆)