1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 23:11:41 +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": 281,
"dislikes": 28,
"likes": 294,
"dislikes": 29,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Best Time to Buy and Sell Stock\", \"titleSlug\": \"best-time-to-buy-and-sell-stock\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Partition Array into Disjoint Intervals\", \"titleSlug\": \"partition-array-into-disjoint-intervals\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "[1,2,3]\n[2,4,6,4]\n[3,2,1]",
@@ -137,7 +137,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"13.4K\", \"totalSubmission\": \"29.3K\", \"totalAcceptedRaw\": 13376, \"totalSubmissionRaw\": 29265, \"acRate\": \"45.7%\"}",
"stats": "{\"totalAccepted\": \"13.8K\", \"totalSubmission\": \"30K\", \"totalAcceptedRaw\": 13786, \"totalSubmissionRaw\": 30041, \"acRate\": \"45.9%\"}",
"hints": [
"Use suffix/prefix arrays.",
"prefix[i] records the maximum value in range (0, i - 1) inclusive.",