Skip to content

Commit f823f1f

Browse files
remove utils
1 parent 298dfb2 commit f823f1f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/main/java/com/fishercoder/solutions/_1104.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ public static class Solution2 {
104104
/**We'll directly compute the index of its parent, it'll be much faster this way.*/
105105
public List<Integer> pathInZigZagTree(int label) {
106106
List<List<Integer>> lists = buildZigZagOrderList(label);
107-
CommonUtils.printListList(lists);
108107
List<Integer> result = new ArrayList<>();
109108
int index = findIndex(lists.get(lists.size() - 1), label);
110109
result.add(label);

0 commit comments

Comments
 (0)