19. Remove Nth Node From End of List

題目描述 題目連結:19. Remove Nth Node From End of List 題意 給定一個鏈結串列,以及一個數字 n,移除鏈結串列倒數第 n 個節點。 限制 * 鏈結串列中的節點數為 sz。 * 1 <= sz <= 30 * 0 <= Node.val <= 100 * 1 <