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

Method main

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

Source from the content-addressed store, hash-verified

29 }
30
31 public static void main(String[] args) {
32 Solution solution = new Solution();
33 ListNode listNode0 = ListNode.createTestData("[1,3,5,7,9]");
34 ListNode listNode1 = ListNode.createTestData("[2,4,6,8,10]");
35 ListNode.print(listNode0);
36 ListNode.print(listNode1);
37 ListNode.print(solution.mergeTwoLists(listNode0, listNode1));
38 }
39}

Callers

nothing calls this directly

Calls 3

createTestDataMethod · 0.95
printMethod · 0.95
mergeTwoListsMethod · 0.95

Tested by

no test coverage detected