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

@@ -12,7 +12,7 @@
"isPaidOnly": true,
"difficulty": "Medium",
"likes": 30,
"dislikes": 11,
"dislikes": 12,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Average Waiting Time\", \"titleSlug\": \"average-waiting-time\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Describe the Painting\", \"titleSlug\": \"describe-the-painting\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Amount of New Area Painted Each Day\", \"titleSlug\": \"amount-of-new-area-painted-each-day\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
"exampleTestcases": "[[1,4,2],[3,9,4]]\n[[1,3,2],[2,5,3],[2,8,3]]\n[[1,2,1],[5,6,1]]",
@@ -46,7 +46,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"811\", \"totalSubmission\": \"1.4K\", \"totalAcceptedRaw\": 811, \"totalSubmissionRaw\": 1387, \"acRate\": \"58.5%\"}",
"stats": "{\"totalAccepted\": \"866\", \"totalSubmission\": \"1.5K\", \"totalAcceptedRaw\": 866, \"totalSubmissionRaw\": 1502, \"acRate\": \"57.7%\"}",
"hints": [
"Try sorting the start and end points of each building.",
"The naive solution is to go through each position on the street and keep track of the sum of all the buildings at that position and the number of buildings at that position.",