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": "Easy",
"likes": 1593,
"likes": 1597,
"dislikes": 509,
"isLiked": null,
"similarQuestions": "[]",
@@ -131,7 +131,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"255.1K\", \"totalSubmission\": \"499K\", \"totalAcceptedRaw\": 255133, \"totalSubmissionRaw\": 499025, \"acRate\": \"51.1%\"}",
"stats": "{\"totalAccepted\": \"255.6K\", \"totalSubmission\": \"499.9K\", \"totalAcceptedRaw\": 255597, \"totalSubmissionRaw\": 499924, \"acRate\": \"51.1%\"}",
"hints": [
"This is a great introductory problem for understanding and working with the concept of in-place operations. The problem statement clearly states that we are to modify the array in-place. That does not mean we cannot use another array. We just don't have to return anything.",
"A better way to solve this would be without using additional space. The only reason the problem statement allows you to make modifications in place is that it hints at avoiding any additional memory.",