1119. Remove Vowels from a String Обновлено: 2024-03-12 1 мин Algorithms , LeetCode СодержаниеLeetCode problem 1119class Solution: def removeVowels(self, s: str) -> str: return "".join(c for c in s if c not in "aeiou")