Answers for "java 2d array how to output certain column"

1

java print 2d array as table

static void debugV2(Object... obj) {
        System.out.println(Arrays.deepToString(obj)
                .replace("],", "n").replace(",", "t")
                .replaceAll("[\[\]]", " "));
    }

    static void debug(Object... obj) {
        System.err.println(Arrays.deepToString(obj).replace("], ", "]n"));
    }
Posted by: Guest on December-12-2020

Code answers related to "java 2d array how to output certain column"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language