Skip to content
Open
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 source/exercises100.ktx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Create a 3x3 matrix with values ranging from 0 to 8 (★☆☆)
hint: reshape

< a9
nz = np.nonzero([1,2,0,0,4,0])
nz = np.arange(2, 11).reshape(3,3)
print(nz)

< q10
Expand Down