id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

jebbert@volusia.k12.fl.us > recursiveVowelRemoverSLAPHL_Dec2011
prev  |  next  |  chance

Write a RECURSIVE method that accepts a string input parameter and returns the string with all of the lower-case vowels removed. Do not remove any other characters including upper-case vowels. For our purposes we will only use the vowels a, e, i, o, and u. (Forget about sometimes y) You solution MUST be recursive.


recursiveVowelRemoverSLAPHL_Dec2011("akdjlhdflkjhwu") → "kdjlhdflkjhw"
recursiveVowelRemoverSLAPHL_Dec2011("") → ""
recursiveVowelRemoverSLAPHL_Dec2011("xyz") → "xyz"

...Save, Compile, Run (ctrl-enter)

public String recursiveVowelRemoverSLAPHL_Dec2011(String str) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 420

Copyright Nick Parlante 2017 - privacy