Given a string, return an array with the number of vowels and number of consonants in the string.
- Vowels consist of a, e, i, o, u in any case.
- Consonants consist of all other letters in any case.
- Ignore any non-letter characters.
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Given a string, return an array with the number of vowels and number of consonants in the string.