Skip to content

Commit 0adddf1

Browse files
committed
Runtime: 19 ms (Top 29.95%) | Memory: 42.8 MB (Top 82.92%)
1 parent 4b0e0b9 commit 0adddf1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
// Runtime: 19 ms (Top 29.95%) | Memory: 42.8 MB (Top 82.92%)
12
import java.math.BigInteger;
23
class Solution {
3-
public String addStrings(String num1, String num2) {
4-
return new BigInteger(num1).add(new BigInteger(num2)).toString();
5-
}
6-
}
4+
public String addStrings(String num1, String num2) {
5+
return new BigInteger(num1).add(new BigInteger(num2)).toString();
6+
}
7+
}

0 commit comments

Comments
 (0)