77.Reverse Vowels of a String Description Write a function that takes a string as input and reverse only the vowels of a string. Example1 Input: 'hello' Output: 'holle' Example2 Input: 'leetcode' Output: 'leotcede' From LeetCode