1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-10-22 05:26:46 +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

@@ -12,16 +12,29 @@
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Medium",
"likes": 0,
"likes": 1,
"dislikes": 0,
"isLiked": null,
"similarQuestions": "[]",
"contributors": [],
"langToValidPlayground": null,
"topicTags": [],
"topicTags": [
{
"name": "Array",
"slug": "array",
"translatedName": "数组",
"__typename": "TopicTagNode"
},
{
"name": "Prefix Sum",
"slug": "prefix-sum",
"translatedName": "前缀和",
"__typename": "TopicTagNode"
}
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"25\", \"totalSubmission\": \"29\", \"totalAcceptedRaw\": 25, \"totalSubmissionRaw\": 29, \"acRate\": \"86.2%\"}",
"stats": "{\"totalAccepted\": \"85\", \"totalSubmission\": \"108\", \"totalAcceptedRaw\": 85, \"totalSubmissionRaw\": 108, \"acRate\": \"78.7%\"}",
"hints": [
"How can we use precalculation to efficiently calculate the average difference at an index?",
"Create a prefix and/or suffix sum array."