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 298dfb2 commit f823f1fCopy full SHA for f823f1f
src/main/java/com/fishercoder/solutions/_1104.java
@@ -104,7 +104,6 @@ public static class Solution2 {
104
/**We'll directly compute the index of its parent, it'll be much faster this way.*/
105
public List<Integer> pathInZigZagTree(int label) {
106
List<List<Integer>> lists = buildZigZagOrderList(label);
107
- CommonUtils.printListList(lists);
108
List<Integer> result = new ArrayList<>();
109
int index = findIndex(lists.get(lists.size() - 1), label);
110
result.add(label);
0 commit comments