LeetCode-3:Longest Substring Without Repeating Characters
题目:
Given a string, find the length of the longest substring without repeating characters.
Example 1:
Input: “abcabcbb”
Output: 3
Explanation: The answer is “abc”, with the length of 3.
题目大意:
找出字符串中最长...
原创
2018-10-20 22:46:19 ·
150 阅读 ·
0 评论