Remove Vowels from a String — LeetCode 1119 Python Solution
EasyLeetCode PremiumString
- Problem
- #1119
- Pattern
- Hash Map
- Reading time
- 2 min
- Source
- leetcode.com
The problem
Given a string s, remove the vowels 'a', 'e', 'i', 'o', and 'u' from it, and return the new string.
Example
- Input
- s = "leetcodeisacommunityforcoders"
- Output
- "ltcdscmmntyfrcdrs"
Python solution
Python
class Solution:
def removeVowels(self, s: str) -> str:
return "".join(c for c in s if c not in "aeiou")Complexity
| Measure | Complexity |
|---|---|
| Time | O(n), where n is the length of the string |
| Space | O(1) auxiliary |
Pattern: Hash Map
Trade memory for time: remember what you have seen so the second pass never happens. LeetCode 1119. Remove Vowels from a String is filed here because the reference solution below belongs to the algorithm family this hub collects, even though its LeetCode tags point elsewhere.
The hash map guide has the Python template for the pattern and the 709 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 1119. Remove Vowels from a String?
- LeetCode 1119. Remove Vowels from a String is rated Easy on LeetCode.
- What is the time complexity of LeetCode 1119. Remove Vowels from a String?
- The Python solution on this page runs in O(n), where n is the length of the string.
- What is the space complexity of LeetCode 1119. Remove Vowels from a String?
- The Python solution on this page uses O(1) auxiliary space.
- What topics does LeetCode 1119. Remove Vowels from a String cover?
- LeetCode 1119. Remove Vowels from a String is tagged String on LeetCode.
- Is LeetCode 1119. Remove Vowels from a String a premium problem?
- Yes. LeetCode 1119. Remove Vowels from a String is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.