
问题:19. Remove Nth Node From End of List
1 |
Given a linked list, remove the n-th node from the end of list and return its head. |
1 |
public ListNode removeNthFromEnd(ListNode head, int n) { |

问题:19. Remove Nth Node From End of List
1 |
Given a linked list, remove the n-th node from the end of list and return its head. |
1 |
public ListNode removeNthFromEnd(ListNode head, int n) { |
近期评论