每日一题 2019 - 02 - 28
题目:
Given a string, find the length of the longest substring without repeating characters.
Example 1:
1 | Input: "abcabcbb" |
Example 2:
1 | Input: "bbbbb" |
Example 3:
1 | Input: "pwwkew" |
解法:
这个题让我们找出某字符串中不重复的最长序列,思路很简单:使用哈希的方法,建立一个数组把每个字符出现的次数投影到对应数组中,对于次数超过1次的序列进行抛弃,二重循环即可解决问题。
代码:
1 | class Solution { |