Skip to content

Commit 4d49279

Browse files
committed
FEAT Implemented method to print formatted contents of an int matrix
1 parent 3cb87ca commit 4d49279

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/PracticeAlgorithms.java

+7
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,13 @@ public static void main(String[] args) {
9696

9797
printTwoDmBooleanArray(testTwoDmBooleanArray);
9898
System.out.println();
99+
100+
System.out.println("- Matrix");
99101
printTwoDmIntArray(testIntMatrix);
102+
System.out.println();
103+
104+
System.out.println("- Transposed");
105+
printTwoDmIntArray(matrixTransposition(testIntMatrix));
106+
System.out.println();
100107
}
101108
}

0 commit comments

Comments
 (0)