Find The Longest Substring Containing Vowels In Even Counts

easy
Given the string s, return the size of the longest substring containing each vowel an even number of times. That is, 'a', 'e', 'i', 'o', and 'u' must appear an even number of times.

Input Format

String str

Output Format

Integer answer

Constraints

1 <= s.length <= 5 x 10^5
s contains only lowercase English letters.

Notice

NA

Example

Input
leetcodeisgreat
Output
5
Previous
Missing Element In Sorted Array
Next
Find Longest Awesome Substring

Related Questions