Skip to content

Commit 2b9df00

Browse files
committed
Fixing name
1 parent c9c6275 commit 2b9df00

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Chapter02/Exercise24/Exercise24.ipynb

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
"metadata": {},
2626
"outputs": [],
2727
"source": [
28-
"# iterating by row of A \n",
28+
"# iterating by row of X\n",
2929
"for i in range(len(X)): \n",
3030
" \n",
31-
" # iterating by coloum by B \n",
31+
" # iterating by coloum by Y\n",
3232
" for j in range(len(Y[0])): \n",
3333
" \n",
34-
" # iterating by rows of B \n",
34+
" # iterating by rows of Y \n",
3535
" for k in range(len(Y)): \n",
3636
" result[i][j] += X[i][k] * Y[k][j]"
3737
]
@@ -80,7 +80,7 @@
8080
"name": "python",
8181
"nbconvert_exporter": "python",
8282
"pygments_lexer": "ipython3",
83-
"version": "3.7.3"
83+
"version": "3.7.4"
8484
}
8585
},
8686
"nbformat": 4,

0 commit comments

Comments
 (0)