Skip to content

Commit 3b48ac5

Browse files
committed
Runtime: 125 ms (Top 33.41%) | Memory: 82.2 MB (Top 27.68%)
1 parent 5ac751b commit 3b48ac5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/M/Max Sum of a Pair With Equal Sum of Digits/Max Sum of a Pair With Equal Sum of Digits.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 125 ms (Top 33.41%) | Memory: 82.2 MB (Top 27.68%)
12
class Solution {
23
public int maximumSum(int[] nums) {
34
HashMap<Integer, Integer> map = new HashMap<>();
@@ -26,4 +27,4 @@ int getNumberTotal(int num) {
2627

2728
return result;
2829
}
29-
}
30+
}

0 commit comments

Comments
 (0)