leecode19.刪除鏈表的倒數第N個節點

/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class Solution { public ListNode removeNthFr
相關文章
相關標籤/搜索