(String[] args)
| 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 | } |
nothing calls this directly
no test coverage detected