1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 23:41:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2023-12-09 19:57:46 +08:00
parent 9bc4722a45
commit 3770b44d1e
4792 changed files with 10889 additions and 10886 deletions

View File

@@ -11,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 5133,
"likes": 5134,
"dislikes": 166,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Remove Nth Node From End of List\", \"titleSlug\": \"remove-nth-node-from-end-of-list\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Swap Nodes in Pairs\", \"titleSlug\": \"swap-nodes-in-pairs\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Reverse Nodes in k-Group\", \"titleSlug\": \"reverse-nodes-in-k-group\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"306K\", \"totalSubmission\": \"448.8K\", \"totalAcceptedRaw\": 305970, \"totalSubmissionRaw\": 448774, \"acRate\": \"68.2%\"}",
"stats": "{\"totalAccepted\": \"306K\", \"totalSubmission\": \"448.9K\", \"totalAcceptedRaw\": 306016, \"totalSubmissionRaw\": 448859, \"acRate\": \"68.2%\"}",
"hints": [
"We can traverse the linked list and store the elements in an array.",
"Upon conversion to an array, we can swap the required elements by indexing the array.",