Skip to content

Commit 49d7f98

Browse files
committed
Add reference links and complexities
1 parent c243140 commit 49d7f98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/matrix/MatrixMultiplicationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class MatrixMultiplicationTest {
1111
private static final double EPSILON = 1e-9; // for floating point comparison
1212

1313
@Test
14-
void testMultiply1by1(){
14+
void testMultiply1by1() {
1515
double[][] matrixA = {{1.0}};
1616
double[][] matrixB = {{2.0}};
1717
double[][] expected = {{2.0}};

0 commit comments

Comments
 (0)