Skip to content

Commit c5e8df2

Browse files
committed
Runtime: 3 ms (Top 87.48%) | Memory: 42.2 MB (Top 54.57%)
1 parent 1784938 commit c5e8df2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/algorithms/S/Smallest Subsequence of Distinct Characters/Smallest Subsequence of Distinct Characters.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Runtime: 3 ms (Top 87.48%) | Memory: 42.2 MB (Top 54.57%)
2+
13
class Solution {
24
public String smallestSubsequence(String s) {
35
boolean[] inStack = new boolean [26];
@@ -24,4 +26,4 @@ public String smallestSubsequence(String s) {
2426
}
2527
return sb.toString();
2628
}
27-
}
29+
}

0 commit comments

Comments
 (0)