MCPcopy Index your code
hub / github.com/Blankj/awesome-java-leetcode / main

Method main

src/com/blankj/easy/_0083/Solution.java:27–31  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

25 }
26
27 public static void main(String[] args) {
28 Solution solution = new Solution();
29 ListNode.print(solution.deleteDuplicates(ListNode.createTestData("[1,1,2]")));
30 ListNode.print(solution.deleteDuplicates(ListNode.createTestData("[1,1,2,3,3]")));
31 }
32}

Callers

nothing calls this directly

Calls 3

printMethod · 0.95
deleteDuplicatesMethod · 0.95
createTestDataMethod · 0.95

Tested by

no test coverage detected