about | help | code help+videos | done | prefs |
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) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 420
Copyright Nick Parlante 2017 - privacy