1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-07 00: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

@@ -12,7 +12,7 @@
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Medium",
"likes": 85,
"likes": 90,
"dislikes": 0,
"isLiked": null,
"similarQuestions": "[]",
@@ -36,11 +36,23 @@
"slug": "breadth-first-search",
"translatedName": "广度优先搜索",
"__typename": "TopicTagNode"
},
{
"name": "Graph",
"slug": "graph",
"translatedName": "图",
"__typename": "TopicTagNode"
},
{
"name": "Topological Sort",
"slug": "topological-sort",
"translatedName": "拓扑排序",
"__typename": "TopicTagNode"
}
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"4.2K\", \"totalSubmission\": \"8.1K\", \"totalAcceptedRaw\": 4160, \"totalSubmissionRaw\": 8137, \"acRate\": \"51.1%\"}",
"stats": "{\"totalAccepted\": \"4.4K\", \"totalSubmission\": \"8.5K\", \"totalAcceptedRaw\": 4399, \"totalSubmissionRaw\": 8527, \"acRate\": \"51.6%\"}",
"hints": [
"Start at any node A and traverse the tree to find the furthest node from it, let's call it B.",
"Having found the furthest node B, traverse the tree from B to find the furthest node from it, lets call it C.",