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": 1154,
"dislikes": 733,
"likes": 1194,
"dislikes": 735,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Lowest Common Ancestor of a Binary Tree IV\", \"titleSlug\": \"lowest-common-ancestor-of-a-binary-tree-iv\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "[3,5,1,6,2,0,8,null,null,7,4]\n[1]\n[0,1,3,null,2]",
@@ -161,7 +161,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"72.9K\", \"totalSubmission\": \"104.2K\", \"totalAcceptedRaw\": 72926, \"totalSubmissionRaw\": 104168, \"acRate\": \"70.0%\"}",
"stats": "{\"totalAccepted\": \"74.7K\", \"totalSubmission\": \"106.5K\", \"totalAcceptedRaw\": 74659, \"totalSubmissionRaw\": 106485, \"acRate\": \"70.1%\"}",
"hints": [
"Do a postorder traversal.",
"Then, if both subtrees contain a deepest leaf, you can mark this node as the answer (so far).",