1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-10-22 21:46:46 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-03-29 16:56:27 +08:00
parent e730aa6794
commit ad15da05aa
2517 changed files with 7358 additions and 7332 deletions

View File

@@ -131,7 +131,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"22.1K\", \"totalSubmission\": \"38K\", \"totalAcceptedRaw\": 22113, \"totalSubmissionRaw\": 37954, \"acRate\": \"58.3%\"}",
"stats": "{\"totalAccepted\": \"22.2K\", \"totalSubmission\": \"38K\", \"totalAcceptedRaw\": 22152, \"totalSubmissionRaw\": 38016, \"acRate\": \"58.3%\"}",
"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.",