Easy
Given a string s, reverse only the vowels (a e i o u, both cases) and return the result.
s
a e i o u
Input: s = "hello" Output: "holle"
Input: s = "leetcode" Output: "leotcede"