Longest Substring without Repeating Characters
Try to solve the Longest Substring without Repeating Characters problem.
We'll cover the following
Statement
Given a string, str
, return the length of the longest substring without repeating characters.
Constraints:
-
str.length
str
consists of English letters, digits, and spaces.