-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added README.md file for Longest Substring Without Repeating Characters
- Loading branch information
0 parents
commit f13a37c
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
3-longest-substring-without-repeating-characters/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<h2><a href="https://leetcode.com/problems/longest-substring-without-repeating-characters">Longest Substring Without Repeating Characters</a></h2> <img src='https://img.shields.io/badge/Difficulty-Medium-orange' alt='Difficulty: Medium' /><hr><p>Given a string <code>s</code>, find the length of the <strong>longest</strong> <span data-keyword="substring-nonempty"><strong>substring</strong></span> without repeating characters.</p> | ||
|
||
<p> </p> | ||
<p><strong class="example">Example 1:</strong></p> | ||
|
||
<pre> | ||
<strong>Input:</strong> s = "abcabcbb" | ||
<strong>Output:</strong> 3 | ||
<strong>Explanation:</strong> The answer is "abc", with the length of 3. | ||
</pre> | ||
|
||
<p><strong class="example">Example 2:</strong></p> | ||
|
||
<pre> | ||
<strong>Input:</strong> s = "bbbbb" | ||
<strong>Output:</strong> 1 | ||
<strong>Explanation:</strong> The answer is "b", with the length of 1. | ||
</pre> | ||
|
||
<p><strong class="example">Example 3:</strong></p> | ||
|
||
<pre> | ||
<strong>Input:</strong> s = "pwwkew" | ||
<strong>Output:</strong> 3 | ||
<strong>Explanation:</strong> The answer is "wke", with the length of 3. | ||
Notice that the answer must be a substring, "pwke" is a subsequence and not a substring. | ||
</pre> | ||
|
||
<p> </p> | ||
<p><strong>Constraints:</strong></p> | ||
|
||
<ul> | ||
<li><code>0 <= s.length <= 5 * 10<sup>4</sup></code></li> | ||
<li><code>s</code> consists of English letters, digits, symbols and spaces.</li> | ||
</ul> |