We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 595e8c7 commit cda7e1bCopy full SHA for cda7e1b
src/leetcode/Test0003_LongestSubstringWithoutRepeatingCharacters/Main.java
@@ -34,6 +34,13 @@ public static void main(String[] args) {
34
}
35
36
37
+ //todo
38
+ public static int longestSubstringWithoutRepeatingCharacters02(String string) {
39
+ int longest = 0;
40
+ return longest;
41
+ }
42
+
43
+ //暴力解法
44
public static int longestSubstringWithoutRepeatingCharacters(String string) {
45
int longest = 0;
46
for (int i = 0; i < string.length(); i++) {
0 commit comments