We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8356d18 commit 4072e7aCopy full SHA for 4072e7a
1 file changed
Arrays/2D Arrays/matrix_Multiplication.java
@@ -48,7 +48,7 @@ public static void main(String args[]) {
48
sum = sum + first[c][k] * second[k][d];
49
}
50
51
- multiply[c][d] = sum; // here sum is the element of multiply matrix and one by 1 element will be inserted
+ multiply[c][d] = sum; // here sum is the element of multiply matrix and one by one element will be inserted
52
sum = 0;
53
54
0 commit comments