1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 06:51: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,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Easy",
"likes": 356,
"likes": 368,
"dislikes": 9,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Binary Tree Tilt\", \"titleSlug\": \"binary-tree-tilt\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Univalued Binary Tree\", \"titleSlug\": \"univalued-binary-tree\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
@@ -46,7 +46,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"32.5K\", \"totalSubmission\": \"39.8K\", \"totalAcceptedRaw\": 32474, \"totalSubmissionRaw\": 39760, \"acRate\": \"81.7%\"}",
"stats": "{\"totalAccepted\": \"33.6K\", \"totalSubmission\": \"41.2K\", \"totalAcceptedRaw\": 33595, \"totalSubmissionRaw\": 41152, \"acRate\": \"81.6%\"}",
"hints": [
"Do a simple tree traversal, try to check if the current node is lonely or not.",
"Node is lonely if at least one of the left/right pointers is null."