1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 06:51:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-03-29 15:21:05 +08:00
parent b84ae535b7
commit e730aa6794
2244 changed files with 8703 additions and 59499 deletions

View File

@@ -11,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 1646,
"likes": 1652,
"dislikes": 73,
"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}]",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"99.5K\", \"totalSubmission\": \"152K\", \"totalAcceptedRaw\": 99473, \"totalSubmissionRaw\": 152019, \"acRate\": \"65.4%\"}",
"stats": "{\"totalAccepted\": \"99.8K\", \"totalSubmission\": \"152.6K\", \"totalAcceptedRaw\": 99773, \"totalSubmissionRaw\": 152561, \"acRate\": \"65.4%\"}",
"hints": [
"We can transform the linked list to an array this should ease things up",
"After transforming the linked list to an array it becomes as easy as swapping two integers in an array then rebuilding the linked list"