Solution: Count Vowel Substrings of a String
C# solution for the Count Vowel Substrings of a String problem using the Sliding Window pattern.
We'll cover the following...
We'll cover the following...
Statement
Given a string word, return the number of substrings of word that are vowel substrings.
A substring of word is considered a vowel substring if both of the following are true:
Every character in the substring is a vowel from the set
{a, e, i, o, u}.The substring contains each of the five vowels
a,e,i,o, anduat least once.
Constraints:
...