Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 100_Numpy_exercises_with_hints_with_solutions.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ print(Z)
`hint: reshape`

```python
nz = np.nonzero([1,2,0,0,4,0])
nz = np.arange(0,9).reshape(3,3)
print(nz)
```
#### 10. Find indices of non-zero elements from [1,2,0,0,4,0] (★☆☆)
Expand Down