Skip to content

Commit 62f3e29

Browse files
committed
Runtime: 452 ms (Top 5.01%) | Memory: 50.5 MB (Top 67.85%)
1 parent d6a081a commit 62f3e29

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/algorithms/C/Count Unique Characters of All Substrings of a Given String/Count Unique Characters of All Substrings of a Given String.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Runtime: 452 ms (Top 5.01%) | Memory: 50.5 MB (Top 67.85%)
2+
13
class Solution {
24
public int uniqueLetterString(String s) {
35
// int[] letter = new int[s.length()];
@@ -18,4 +20,4 @@ public int uniqueLetterString(String s) {
1820
}
1921
return res;
2022
}
21-
}
23+
}

0 commit comments

Comments
 (0)