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": 732,
"dislikes": 30,
"likes": 758,
"dislikes": 32,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Subsequence of Size K With the Largest Even Sum\", \"titleSlug\": \"subsequence-of-size-k-with-the-largest-even-sum\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "[1,3,5]\n[2,4,6]\n[1,2,3,4,5,6,7]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"22.3K\", \"totalSubmission\": \"51.3K\", \"totalAcceptedRaw\": 22321, \"totalSubmissionRaw\": 51296, \"acRate\": \"43.5%\"}",
"stats": "{\"totalAccepted\": \"23K\", \"totalSubmission\": \"52.9K\", \"totalAcceptedRaw\": 23019, \"totalSubmissionRaw\": 52868, \"acRate\": \"43.5%\"}",
"hints": [
"Can we use the accumulative sum to keep track of all the odd-sum sub-arrays ?",
"if the current accu sum is odd, we care only about previous even accu sums and vice versa."