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"));
}