Versioni confrontate

Chiave

  • Questa linea è stata aggiunta.
  • Questa linea è stata rimossa.
  • La formattazione è stata modificata.


Excerpt

Given a string, find the length of the longest substring without repeating characters.


Example 1:

Code Block
Input: "abcabcbb"
Output: 3 
Explanation: The answer is "abc", with the length of 3. 

...