1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 15:31:43 +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": 202,
"dislikes": 21,
"likes": 212,
"dislikes": 25,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Map Sum Pairs\", \"titleSlug\": \"map-sum-pairs\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "[8,9,4,0,2,1,3,5,7,6]\n[991,338,38]\n[0,1,2,3,4,5,6,7,8,9]\n[789,456,123]",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"11.4K\", \"totalSubmission\": \"26.4K\", \"totalAcceptedRaw\": 11381, \"totalSubmissionRaw\": 26439, \"acRate\": \"43.0%\"}",
"stats": "{\"totalAccepted\": \"12.1K\", \"totalSubmission\": \"27.8K\", \"totalAcceptedRaw\": 12084, \"totalSubmissionRaw\": 27841, \"acRate\": \"43.4%\"}",
"hints": [
"Map the original numbers to new numbers by the mapping rule and sort the new numbers.",
"To maintain the same relative order for equal mapped values, use the index in the original input array as a tiebreaker."