You have to program the function below.
Scoring
The function counts 100 points.
>>> vowel_consonant(['five', 'six', 'seven', 'one', 'two']) (['five', 'one', 'two'], ['six', 'seven']) >>> vowel_consonant(['cow', 'dog', 'cat']) ([], ['cow', 'dog', 'cat']) >>> vowel_consonant(['blue', 'white']) (['blue', 'white'], [])