forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_1469.java
33 lines (26 loc) · 879 Bytes
/
_1469.java
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
package com.fishercoder.solutions;
import com.fishercoder.common.classes.TreeNode;
import java.util.ArrayList;
import java.util.List;
public class _1469 {
public static class Solution1 {
public List<Integer> getLonelyNodes(TreeNode root) {
List<Integer> lonelyNodes = new ArrayList<>();
dfs(root, lonelyNodes);
return lonelyNodes;
}
private void dfs(TreeNode root, List<Integer> lonelyNodes) {
if (root == null) {
return;
}
if (root.left == null && root.right != null) {
lonelyNodes.add(root.right.val);
}
if (root.left != null && root.right == null) {
lonelyNodes.add(root.left.val);
}
dfs(root.left, lonelyNodes);
dfs(root.right, lonelyNodes);
}
}
}