Longest Substring with At Most Two Distinct Characters(map)
Given a strings, find the length of the longest substring _t _that containsat most2 distinct characters.
Example 1:
Input:
"eceba"
Output:
3
Explanation:
t
is "ece" which its length is 3.Example 2:
Input:
"ccaabbb"
Output:
5
Explanation:
t
is "aabbb" which its length is 5.分析
用模板
Last updated
Was this helpful?