Skip to content

Latest commit

 

History

History

vowel-remover

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
  • Completed at: 2023-10-11T03:26:50.236Z

  • Completed languages: java

  • Tags: Strings, Fundamentals

  • Rank: 8 kyu

Description

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