(String[] args)
| 66 | } |
| 67 | |
| 68 | public static void main(String[] args) { |
| 69 | Solution solution = new Solution(); |
| 70 | ListNode.print(solution.mergeKLists(new ListNode[]{ |
| 71 | ListNode.createTestData("[1,3,5,7]"), |
| 72 | ListNode.createTestData("[2,4,6]") |
| 73 | })); |
| 74 | } |
| 75 | } |
nothing calls this directly
no test coverage detected