-
Notifications
You must be signed in to change notification settings - Fork 1
/
1469.find-all-the-lonely-nodes.py
91 lines (88 loc) · 2.18 KB
/
1469.find-all-the-lonely-nodes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#
# @lc app=leetcode id=1469 lang=python3
#
# [1469] Find All The Lonely Nodes
#
# https://leetcode.com/problems/find-all-the-lonely-nodes/description/
#
# algorithms
# Easy (82.02%)
# Likes: 447
# Dislikes: 9
# Total Accepted: 43.1K
# Total Submissions: 52.5K
# Testcase Example: '[1,2,3,null,4]'
#
# In a binary tree, a lonely node is a node that is the only child of its
# parent node. The root of the tree is not lonely because it does not have a
# parent node.
#
# Given the root of a binary tree, return an array containing the values of all
# lonely nodes in the tree. Return the list in any order.
#
#
# Example 1:
#
#
# Input: root = [1,2,3,null,4]
# Output: [4]
# Explanation: Light blue node is the only lonely node.
# Node 1 is the root and is not lonely.
# Nodes 2 and 3 have the same parent and are not lonely.
#
#
# Example 2:
#
#
# Input: root = [7,1,4,6,null,5,3,null,null,null,null,null,2]
# Output: [6,2]
# Explanation: Light blue nodes are lonely nodes.
# Please remember that order doesn't matter, [2,6] is also an acceptable
# answer.
#
#
# Example 3:
#
#
#
# Input: root = [11,99,88,77,null,null,66,55,null,null,44,33,null,null,22]
# Output: [77,55,33,66,44,22]
# Explanation: Nodes 99 and 88 share the same parent. Node 11 is the root.
# All other nodes are lonely.
#
#
#
# Constraints:
#
#
# The number of nodes in the tree is in the range [1, 1000].
# 1 <= Node.val <= 10^6
#
#
#
# @lc code=start
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def getLonelyNodes(self, root: Optional[TreeNode]) -> List[int]:
if not root:
return []
stk = [root]
res = []
while stk:
node = stk.pop()
val = node.val
if node.right and not node.left:
res.append(node.right.val)
elif node.left and not node.right:
res.append(node.left.val)
if node.right:
stk.append(node.right)
if node.left:
stk.append(node.left)
return res
# @lc code=end