This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void debug(Object...os) { System.err.println(Arrays.deepToString(os)); } | |
//Print anything that supports toString() Method in Java | |
//Arrays show in format like: [[1, 2, 3], [4, 5, 6]] | |
//Also cloud be used by debug(a, b, c, d) |