MCPcopy Create free account
hub / github.com/Blankj/awesome-java-leetcode / main

Method main

src/com/blankj/hard/_1028/Solution.java:73–78  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

71 }
72
73 public static void main(String[] args) {
74 Solution solution = new Solution();
75 TreeNode.print(solution.recoverFromPreorder("1-2--3--4-5--6--7"));
76 System.out.println("==============================================");
77 TreeNode.print(solution.recoverFromPreorder("1-2--3---4-5--6---7"));
78 }
79}

Callers

nothing calls this directly

Calls 2

printMethod · 0.95
recoverFromPreorderMethod · 0.95

Tested by

no test coverage detected