1119. Remove Vowels from a String
On This Page
class Solution:
def removeVowels(self, s: str) -> str:
return "".join(c for c in s if c not in "aeiou")
class Solution:
def removeVowels(self, s: str) -> str:
return "".join(c for c in s if c not in "aeiou")