1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 15:01: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": 252,
"dislikes": 16,
"likes": 257,
"dislikes": 17,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Wiggle Sort\", \"titleSlug\": \"wiggle-sort\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Wiggle Sort II\", \"titleSlug\": \"wiggle-sort-ii\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "[1,2,3,4,5]\n[6,2,0,9,7]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"15.9K\", \"totalSubmission\": \"33K\", \"totalAcceptedRaw\": 15925, \"totalSubmissionRaw\": 32973, \"acRate\": \"48.3%\"}",
"stats": "{\"totalAccepted\": \"16.4K\", \"totalSubmission\": \"33.8K\", \"totalAcceptedRaw\": 16384, \"totalSubmissionRaw\": 33762, \"acRate\": \"48.5%\"}",
"hints": [
"A number can be the average of its neighbors if one neighbor is smaller than the number and the other is greater than the number.",
"We can put numbers smaller than the median on odd indices and the rest on even indices."