Skip to content

Commit 8ea76d1

Browse files
committed
reset derived files to original state
1 parent ed0a067 commit 8ea76d1

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

100_Numpy_exercises_with_hints_with_solutions.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ print(Z)
3838
```python
3939
Z = np.zeros((10,10))
4040
print("%d bytes" % (Z.size * Z.itemsize))
41-
42-
# Simpler alternative
43-
print("%d bytes" % Z.nbytes)
4441
```
4542
#### 5. How to get the documentation of the numpy add function from the command line? (★☆☆)
4643
`hint: np.info`

100_Numpy_exercises_with_solutions.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ print(Z)
3838
```python
3939
Z = np.zeros((10,10))
4040
print("%d bytes" % (Z.size * Z.itemsize))
41-
42-
# Simpler alternative
43-
print("%d bytes" % Z.nbytes)
4441
```
4542
#### 5. How to get the documentation of the numpy add function from the command line? (★☆☆)
4643

0 commit comments

Comments
 (0)