Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 440 Bytes

File metadata and controls

15 lines (11 loc) · 440 Bytes

Create a function called shortcut to remove the lowercase vowels (a, e, i, o, u ) in a given string.

Examples

"hello"     -->  "hll"
"codewars"  -->  "cdwrs"
"goodbye"   -->  "gdby"
"HELLO"     -->  "HELLO"
  • don't worry about uppercase vowels
  • y is not considered a vowel for this kata