Skip to content

Commit 622f3f2

Browse files
committed
Runtime: 1 ms (Top 86.10%) | Memory: 40.1 MB (Top 92.63%)
1 parent e3d0232 commit 622f3f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/S/Sum of Unique Elements/Sum of Unique Elements.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 1 ms (Top 86.10%) | Memory: 40.1 MB (Top 92.63%)
12
class Solution {
23
public int sumOfUnique(int[] nums) {
34
int res = 0;
@@ -9,4 +10,4 @@ public int sumOfUnique(int[] nums) {
910
}
1011
return res;
1112
}
12-
}
13+
}

0 commit comments

Comments
 (0)