Skip to content

Commit 5c36120

Browse files
committed
Runtime: 73 ms (Top 62.96%) | Memory: 85.2 MB (Top 70.37%)
1 parent 72f93ba commit 5c36120

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/F/Find Array Given Subset Sums/Find Array Given Subset Sums.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 73 ms (Top 62.96%) | Memory: 85.2 MB (Top 70.37%)
12
class Solution {
23
public int[] recoverArray(int n, int[] sums) {
34
Arrays.sort(sums);
@@ -24,4 +25,4 @@ public int[] recoverArray(int n, int[] sums) {
2425
}
2526
return res;
2627
}
27-
}
28+
}

0 commit comments

Comments
 (0)