1119. Remove Vowels from a String

Обновлено: 2024-03-12
1 мин
[]

Содержание

LeetCode problem 1119

class Solution:
    def removeVowels(self, s: str) -> str:
        return "".join(c for c in s if c not in "aeiou")