LeetCode-Python-1119. 删去字符串中的元音

给你一个字符串 S,请你删去其中的所有元音字母( 'a''e''i''o''u'),并返回这个新字符串。

 

示例 1:

输入:"leetcodeisacommunityforcoders"
输出:"ltcdscmmntyfrcdrs"

示例 2:

输入:"aeiou"
输出:""

 

提示:

  1. S 仅由小写英文字母组成。
  2. 1 <= S.length <= 1000

思路:

emmm

没啥思路,水题,照着要求弄就行。

class Solution(object):
    def removeVowels(self, S):
        """
        :type S: str
        :rtype: str
        """
        res = ""
        for char in S:
            if char not in "aeiou":
                res += char
                
        return res

 

你可能感兴趣的:(Leetcode,Python)