We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c243140 commit 49d7f98Copy full SHA for 49d7f98
src/test/java/com/thealgorithms/matrix/MatrixMultiplicationTest.java
@@ -11,7 +11,7 @@ public class MatrixMultiplicationTest {
11
private static final double EPSILON = 1e-9; // for floating point comparison
12
13
@Test
14
- void testMultiply1by1(){
+ void testMultiply1by1() {
15
double[][] matrixA = {{1.0}};
16
double[][] matrixB = {{2.0}};
17
double[][] expected = {{2.0}};
0 commit comments