题目链接
英文链接:https://leetcode.com/problems/reverse-vowels-of-a-string/
中文链接:https://leetcode-cn.com/problems/reverse-vowels-of-a-string/
题目详述
编写一个函数,以字符串作为输入,反转该字符串中的元音字母。
示例 1:
1 | 输入: "hello" |
示例 2:
1 | 输入: "leetcode" |
说明:
元音字母不包含字母”y”。
题目详解
运用双指针从两侧往中间扫描即可。
1 | public class LeetCode_00345 { |