-
Completed at: 2023-10-11T03:26:50.236Z
-
Completed languages: java
-
Tags: Strings, Fundamentals
-
Rank: 8 kyu
Create a function called shortcut
to remove the lowercase vowels (a
, e
, i
, o
, u
) in a given string.
"hello" --> "hll"
"codewars" --> "cdwrs"
"goodbye" --> "gdby"
"HELLO" --> "HELLO"
- don't worry about uppercase vowels
y
is not considered a vowel for this kata