1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 07:21: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": "Easy",
"likes": 2966,
"dislikes": 61,
"likes": 3069,
"dislikes": 62,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Count of Smaller Numbers After Self\", \"titleSlug\": \"count-of-smaller-numbers-after-self\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
"exampleTestcases": "[8,1,2,2,3]\n[6,5,4,8]\n[7,7,7,7]",
@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"295.5K\", \"totalSubmission\": \"342.5K\", \"totalAcceptedRaw\": 295548, \"totalSubmissionRaw\": 342475, \"acRate\": \"86.3%\"}",
"stats": "{\"totalAccepted\": \"302.4K\", \"totalSubmission\": \"350.2K\", \"totalAcceptedRaw\": 302351, \"totalSubmissionRaw\": 350180, \"acRate\": \"86.3%\"}",
"hints": [
"Brute force for each array element.",
"In order to improve the time complexity, we can sort the array and get the answer for each array element."