reed-qu / leetcode-cn

leetcode-cn上面算法题的解题思路
MIT License
1 stars 0 forks source link

345. 反转字符串中的元音字母 #73

Open reed-qu opened 4 years ago

reed-qu commented 4 years ago

原始问题:345. 反转字符串中的元音字母

编写一个函数,以字符串作为输入,反转该字符串中的元音字母。

示例 1:

输入: "hello"
输出: "holle"

示例 2:

输入: "leetcode"
输出: "leotcede"

说明: 元音字母不包含字母"y"。

解题示例


class Solution:
    def reverseVowels(self, s: str) -> str:
        pass
reed-qu commented 4 years ago

ReverseVowelsOfAString.py