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": "Medium",
"likes": 544,
"dislikes": 161,
"likes": 558,
"dislikes": 167,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Parallel Courses III\", \"titleSlug\": \"parallel-courses-iii\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
"exampleTestcases": "[3,3,2]\n[1,2,3,2,1,2]\n[5,1,4,3,2]\n[2,1,2,4,5,2,1]",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"16.2K\", \"totalSubmission\": \"43.6K\", \"totalAcceptedRaw\": 16159, \"totalSubmissionRaw\": 43559, \"acRate\": \"37.1%\"}",
"stats": "{\"totalAccepted\": \"16.9K\", \"totalSubmission\": \"45.1K\", \"totalAcceptedRaw\": 16878, \"totalSubmissionRaw\": 45131, \"acRate\": \"37.4%\"}",
"hints": [
"You can maintain a Heap of available Servers and a Heap of unavailable servers",
"Note that the tasks will be processed in the input order so you just need to find the x-th server that will be available according to the rules"