Given a string s, return a new string with every vowel removed. Vowels are the characters 'a', 'e', 'i', 'o', 'u' in both lowercase and uppercase.
Input
s: a string
Output
A string equal to s with all vowels deleted, in original order.
Examples
Example 1
Inputs = "hello world"
Output"hll wrld"
Example 2
Inputs = "AlgoMonster"
Output"lgMnstr"
Constraints
0 <= s.length <= 10^5
s may contain any printable characters; only the ten vowel characters are removed.