159. Longest Substring with At Most Two Distinct Characters

Description

Given a string s , find the length of the longest substring t that contains at most 2 distinct characters.

Constraints

Approach

Examples

Input: "eceba"

Output: 3

Explanation: t is "ece" which its length is 3.

Solutions

Follow up

Last updated

Was this helpful?