Skip to content

Commit 7263379

Browse files
committed
DOCS Added documentation to printTwoDmIntArray static method
1 parent 4d49279 commit 7263379

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/PracticeAlgorithms.java

+3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ public static void printTwoDmBooleanArray(boolean[][] theArray) {
4040
}
4141
}
4242

43+
/**
44+
* static method to print the formatted contents of a two-dimensional int array
45+
* */
4346
public static void printTwoDmIntArray(int[][] theArray) {
4447

4548
for (int[] rows : theArray) {

0 commit comments

Comments
 (0)