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 238063e commit b9f35bfCopy full SHA for b9f35bf
src/main/java/com/thealgorithms/matrix/LUDecomposition.java
@@ -104,7 +104,9 @@ public static void printMatrix(double[][] M) {
104
System.out.print("[");
105
for (int j = 0; j < row.length; j++) {
106
System.out.printf("%7.3f", row[j]);
107
- if (j < row.length - 1) System.out.print(", ");
+ if (j < row.length - 1) {
108
+ System.out.print(", ");
109
+ }
110
}
111
System.out.println("]");
112
0 commit comments