Given a sentence as str, return true if any two adjacent words have this property: One word ends with a vowel, while the word immediately after begins with a vowel (a e i o u).
vowel_links("a very large appliance") ➞ true
vowel_links("go to edabit") ➞ true
vowel_links("an open fire") ➞ false
vowel_links("a sudden applause") ➞ falseYou can expect sentences in only lowercase.