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 4cd4fc1 commit 48385e8Copy full SHA for 48385e8
src/main/java/com/fishercoder/solutions/_3.java
@@ -5,22 +5,6 @@
5
import java.util.Map;
6
import java.util.Set;
7
8
-/**
9
- * 3. Longest Substring Without Repeating Characters
10
- *
11
- * Given a string, find the length of the longest substring without repeating characters.
12
-
13
- Examples:
14
15
- Given "abcabcbb", the answer is "abc", which the length is 3.
16
17
- Given "bbbbb", the answer is "b", with the length of 1.
18
19
- Given "pwwkew", the answer is "wke", with the length of 3.
20
21
- Note that the answer must be a substring, "pwke" is a subsequence and not a substring.
22
- */
23
24
public class _3 {
25
26
public static class Solution1 {
0 commit comments