(String[] args)
| 30 | } |
| 31 | |
| 32 | public static void main(String[] args) { |
| 33 | Solution solution = new Solution(); |
| 34 | ListNode.print(solution.removeNthFromEnd(ListNode.createTestData("[1,2,3,4,5]"), 2)); |
| 35 | ListNode.print(solution.removeNthFromEnd(ListNode.createTestData("[1]"), 1)); |
| 36 | } |
| 37 | } |
nothing calls this directly
no test coverage detected