mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-02 22:13:28 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": "<p>若链表中的某个节点,既不是链表头节点,也不是链表尾节点,则称其为该链表的「中间节点」。</p>\n\n<p>假定已知链表的某一个中间节点,请实现一种算法,将该节点从链表中删除。</p>\n\n<p>例如,传入节点 <code>c</code>(位于单向链表 <code>a->b->c->d->e->f</code> 中),将其删除后,剩余链表为 <code>a->b->d->e->f</code></p>\n\n<p> </p>\n\n<p><strong>示例:</strong></p>\n\n<pre>\n<strong>输入:</strong>节点 5 (位于单向链表 4->5->1->9 中)\n<strong>输出:</strong>不返回任何数据,从链表中删除传入的节点 5,使链表变为 4->1->9\n</pre>\n\n<p> </p>\n",
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Easy",
|
||||
"likes": 144,
|
||||
"likes": 149,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[]",
|
||||
@@ -83,7 +83,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"79.3K\", \"totalSubmission\": \"92.6K\", \"totalAcceptedRaw\": 79332, \"totalSubmissionRaw\": 92595, \"acRate\": \"85.7%\"}",
|
||||
"stats": "{\"totalAccepted\": \"80.7K\", \"totalSubmission\": \"94.1K\", \"totalAcceptedRaw\": 80728, \"totalSubmissionRaw\": 94134, \"acRate\": \"85.8%\"}",
|
||||
"hints": [
|
||||
"列出清单1 -> 5 -> 9 -> 12。删除9会使它看起来像1 -> 5 -> 12。你只能访问9节点。你能让它看起来像正确的答案吗?"
|
||||
],
|
||||
|
Reference in New Issue
Block a user