mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-23 12:35:55 +08:00
Remove unnecessary code (#4141)
This commit is contained in:
@ -87,7 +87,7 @@ public class MatrixChainMultiplication {
|
||||
private static void printArray(int[][] array) {
|
||||
for (int i = 1; i < size + 1; i++) {
|
||||
for (int j = 1; j < size + 1; j++) {
|
||||
System.out.print(String.format("%7d", array[i][j]));
|
||||
System.out.printf("%7d", array[i][j]);
|
||||
}
|
||||
System.out.println();
|
||||
}
|
||||
|
Reference in New Issue
Block a user