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": 740,
"dislikes": 75,
"likes": 768,
"dislikes": 80,
"isLiked": null,
"similarQuestions": "[]",
"exampleTestcases": "[-5,1,5,0,-7]\n[-4,-3,-2,-1,4,3,2]",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"67.9K\", \"totalSubmission\": \"86.1K\", \"totalAcceptedRaw\": 67935, \"totalSubmissionRaw\": 86078, \"acRate\": \"78.9%\"}",
"stats": "{\"totalAccepted\": \"70.2K\", \"totalSubmission\": \"88.9K\", \"totalAcceptedRaw\": 70173, \"totalSubmissionRaw\": 88931, \"acRate\": \"78.9%\"}",
"hints": [
"Let's note that the altitude of an element is the sum of gains of all the elements behind it",
"Getting the altitudes can be done by getting the prefix sum array of the given array"