1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 07:21:40 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-05-02 23:44:12 +08:00
parent 7ea03594b3
commit 2a71c78585
4790 changed files with 11696 additions and 10944 deletions

View File

@@ -11,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 328,
"dislikes": 8,
"likes": 398,
"dislikes": 9,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Linked List Components\", \"titleSlug\": \"linked-list-components\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "[0,3,1,0,4,5,2,0]\n[0,1,0,3,0,2,2,0]",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"24.5K\", \"totalSubmission\": \"28K\", \"totalAcceptedRaw\": 24484, \"totalSubmissionRaw\": 28017, \"acRate\": \"87.4%\"}",
"stats": "{\"totalAccepted\": \"28.1K\", \"totalSubmission\": \"32.2K\", \"totalAcceptedRaw\": 28072, \"totalSubmissionRaw\": 32213, \"acRate\": \"87.1%\"}",
"hints": [
"How can you use two pointers to modify the original list into the new list?",
"Have a pointer traverse the entire linked list, while another pointer looks at a node that is currently being modified.",