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, count how many substrings of word are vowel substrings.
A substring is a contiguous segment of word. A substring is considered a vowel substring if it contains only vowels and includes each of the five vowels a, e, i, o, and u at least once.
Return the total number of vowel substrings in word.
Constraints:
word.length...