I am trying to solve above problem. Below is my solution. Appreciate feedback/comments.
public static boolean areMoreVowels(String str, int c, int v){
String vowels = "aeiou";
if(vowels.indexOf(str.charAt(0))>=0){
v++;
}else{
c++;
}
if(str.length()==1){
return v > c;
}
return areMoreVowels(str.substring(1), c, v);
}
public static void main(String[] args) {
System.out.println(areMoreVowels("aeiouttrrrrr", 0, 0));
}