<p>给定一个字符串 <code>s</code> ,请你找出其中不含有重复字符的 <strong>最长连续子字符串 </strong>的长度。</p> <p> </p> <p><strong>示例 1:</strong></p> <pre> <strong>输入: </strong>s = "abcabcbb" <strong>输出: </strong>3 <strong>解释:</strong> 因为无重复字符的最长子字符串是 <code>"abc",所以其</code>长度为 3。 </pre> <p><strong>示例 2:</strong></p> <pre> <strong>输入: </strong>s = "bbbbb" <strong>输出: </strong>1 <strong>解释: </strong>因为无重复字符的最长子字符串是 <code>"b"</code>,所以其长度为 1。 </pre> <p><strong>示例 3:</strong></p> <pre> <strong>输入: </strong>s = "pwwkew" <strong>输出: </strong>3 <strong>解释: </strong>因为无重复字符的最长子串是 <code>"wke"</code>,所以其长度为 3。 请注意,你的答案必须是 <strong>子串 </strong>的长度,<code>"pwke"</code> 是一个<em>子序列,</em>不是子串。 </pre> <p><strong>示例 4:</strong></p> <pre> <strong>输入: </strong>s = "" <strong>输出: </strong>0 </pre> <p> </p> <p><strong>提示:</strong></p> <ul> <li><code>0 <= s.length <= 5 * 10<sup>4</sup></code></li> <li><code>s</code> 由英文字母、数字、符号和空格组成</li> </ul> <p> </p> <p><meta charset="UTF-8" />注意:本题与主站 3 题相同: <a href="https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/">https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/</a></p>