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 33190a9 commit 40d815cCopy full SHA for 40d815c
src/main/java/com/fishercoder/solutions/_282.java
@@ -21,7 +21,7 @@ public class _282 {
21
22
public static class Solution1 {
23
public List<String> addOperators(String num, int target) {
24
- List<String> res = new ArrayList<String>();
+ List<String> res = new ArrayList<>();
25
StringBuilder sb = new StringBuilder();
26
dfs(res, sb, num, 0, target, 0, 0);
27
return res;
0 commit comments