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-03-29 15:21:05 +08:00
parent b84ae535b7
commit e730aa6794
2244 changed files with 8703 additions and 59499 deletions

View File

@@ -11,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Easy",
"likes": 355,
"likes": 356,
"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.4K\", \"totalSubmission\": \"39.6K\", \"totalAcceptedRaw\": 32389, \"totalSubmissionRaw\": 39649, \"acRate\": \"81.7%\"}",
"stats": "{\"totalAccepted\": \"32.5K\", \"totalSubmission\": \"39.8K\", \"totalAcceptedRaw\": 32474, \"totalSubmissionRaw\": 39760, \"acRate\": \"81.7%\"}",
"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."