forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_339.java
40 lines (33 loc) · 1.09 KB
/
_339.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
34
35
36
37
38
39
40
package com.fishercoder.solutions;
import com.fishercoder.common.classes.NestedInteger;
import java.util.List;
public class _339 {
public static class Solution1 {
private int sum = 0;
public int depthSum(List<NestedInteger> nestedList) {
return dfs(nestedList, 1);
}
private int dfs(List<NestedInteger> nestedList, int depth) {
for (NestedInteger ni : nestedList) {
if (ni.isInteger()) {
sum += depth * ni.getInteger();
} else {
dfs(ni.getList(), depth + 1);
}
}
return sum;
}
}
public static class Solution2 {
public int depthSum(List<NestedInteger> nestedList) {
return dfs(nestedList, 1);
}
private int dfs(List<NestedInteger> nestedList, int depth) {
int sum = 0;
for (NestedInteger ni : nestedList) {
sum += ni.isInteger() ? depth * ni.getInteger() : dfs(ni.getList(), depth + 1);
}
return sum;
}
}
}