Skip to content

Commit 4951649

Browse files
committed
feat: 0019. Remove Nth Node From End of List
1 parent 3437d20 commit 4951649

File tree

1 file changed

+58
-4
lines changed
  • Leetcode/0019.Remove-Nth-Node-From-End-of-List

1 file changed

+58
-4
lines changed

Leetcode/0019.Remove-Nth-Node-From-End-of-List/README.md

Lines changed: 58 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,62 @@
11
---
2-
title: 0019.Remove Nth Node From End of List
3-
tags: Medium, Two Pointers
4-
author: Kimi Tsai <kimi0230@gmail.com>
5-
description:
2+
title: 0019. Remove Nth Node From End of List
3+
subtitle: "https://leetcode.com/problems/remove-nth-node-from-end-of-list/"
4+
date: 2024-03-12T16:26:00+08:00
5+
lastmod: 2024-03-12T16:26:00+08:00
6+
draft: false
7+
author: "Kimi.Tsai"
8+
authorLink: "https://kimi0230.github.io/"
9+
description: "0015.3Sum"
10+
license: ""
11+
images: []
12+
13+
tags: [LeetCode, Go, Medium, Linked List, Two Pointers, Facebook, Amazon, Microsoft, Google, Bloomberg]
14+
categories: [LeetCode]
15+
16+
featuredImage: ""
17+
featuredImagePreview: ""
18+
19+
hiddenFromHomePage: false
20+
hiddenFromSearch: false
21+
twemoji: false
22+
lightgallery: true
23+
ruby: true
24+
fraction: true
25+
fontawesome: true
26+
linkToMarkdown: false
27+
rssFullText: false
28+
29+
toc:
30+
enable: true
31+
auto: true
32+
code:
33+
copy: true
34+
maxShownLines: 200
35+
math:
36+
enable: false
37+
# ...
38+
mapbox:
39+
# ...
40+
share:
41+
enable: true
42+
# ...
43+
comment:
44+
enable: true
45+
# ...
46+
library:
47+
css:
48+
# someCSS = "some.css"
49+
# located in "assets/"
50+
# Or
51+
# someCSS = "https://cdn.example.com/some.css"
52+
js:
53+
# someJS = "some.js"
54+
# located in "assets/"
55+
# Or
56+
# someJS = "https://cdn.example.com/some.js"
57+
seo:
58+
images: []
59+
# ...
660
---
761
# [19. Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/)
862

0 commit comments

Comments
 (0)