Skip to content

Commit b29c9b5

Browse files
committed
#3: description update
1 parent 5f66539 commit b29c9b5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

c-sharp/Problems/sliding-window/LongestSubstringWithoutRepeatingCharacters.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@
1919
* Example 3:
2020
* Input: s = "pwwkew"
2121
* Output: 3
22-
* Explanation:
22+
* Explanation:
2323
* The answer is "wke", with the length of 3.
24-
* Notice that the answer must be a substring, "pwke" is a subsequence and not a substring.
24+
* Notice that the answer must be a substring,
25+
* "pwke" is a subsequence and not a substring.
2526
*
2627
* Constraints:
27-
* • 0 <= s.length <= 5 * 104
28+
* • 0 <= s.length <= 5 * 10^4
2829
* • s consists of English letters, digits, symbols and spaces.
2930
**
3031
* https://leetcode.com/problems/longest-substring-without-repeating-characters/

0 commit comments

Comments
 (0)