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 722f746 commit e255227Copy full SHA for e255227
src/main/java/com/fishercoder/common/utils/CommonUtils.java
@@ -221,4 +221,14 @@ public static void printArrayArray(int[][] arrayArrays) {
221
}
222
System.out.println();
223
224
+
225
+ public static void print2DCharArray(char[][] arrayArrays) {
226
+ for (char[] array : arrayArrays) {
227
+ for (char i : array) {
228
+ System.out.print(i + ", ");
229
+ }
230
+ System.out.println();
231
232
233
234
0 commit comments