Skip to content

Commit 5ce7ce0

Browse files
committed
Added LU decomposition algorthim
1 parent fffe043 commit 5ce7ce0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/com/thealgorithms/matrix/LUDecomposition.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
*/
1515
public class LUDecomposition {
1616

17-
private LUDecomposition() {}
17+
private LUDecomposition() {
18+
}
1819

1920
/**
2021
* A helper class to store both l and u matrices
@@ -99,4 +100,4 @@ public static void main(String[] args) {
99100
System.out.println("\nu matrix:");
100101
printMatrix(result.u);
101102
}
102-
}
103+
}

0 commit comments

Comments
 (0)