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,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Medium",
"likes": 654,
"likes": 672,
"dislikes": 20,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Course Schedule II\", \"titleSlug\": \"course-schedule-ii\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Parallel Courses II\", \"titleSlug\": \"parallel-courses-ii\", \"difficulty\": \"Hard\", \"translatedTitle\": null}, {\"title\": \"Parallel Courses III\", \"titleSlug\": \"parallel-courses-iii\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
@@ -34,7 +34,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"36.8K\", \"totalSubmission\": \"60.6K\", \"totalAcceptedRaw\": 36846, \"totalSubmissionRaw\": 60593, \"acRate\": \"60.8%\"}",
"stats": "{\"totalAccepted\": \"38.2K\", \"totalSubmission\": \"62.8K\", \"totalAcceptedRaw\": 38191, \"totalSubmissionRaw\": 62761, \"acRate\": \"60.9%\"}",
"hints": [
"Try to think of it as a graph problem. It will be impossible to study all the courses if the graph had a cycle.",
"The graph is a directed acyclic graph (DAG). The answer is the longes path in this DAG.",