Given string *s*, reverse only the vowels of *s* (case-sensitive). Return the resulting string. Use a two-pointer approach.
One line string s.
Reversed-vowels string.
Example 1:
Input:
s = "hello"
Output:
holle
Explanation:
Vowels 'e' and 'o' are reversed.