We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57392f2 commit 01ddad4Copy full SHA for 01ddad4
src/main/java/com/fishercoder/solutions/_988.java
@@ -36,7 +36,7 @@
36
public class _988 {
37
public static class Solution1 {
38
public String smallestFromLeaf(TreeNode root) {
39
- List<String> paths = new ArrayList<>();
+ final List<String> paths = new ArrayList<>();
40
Map<Integer, Character> map = new HashMap<>();
41
map.put(0, 'a');
42
map.put(1, 'b');
0 commit comments