Simplify CheckVowels (#3172)

This commit is contained in:
Arthita Paul 2022-07-01 17:28:28 +05:30 committed by GitHub
parent 6665ab262c
commit b0f21803d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,24 +19,15 @@ public class CheckVowels {
* @return {@code true} if given string has vowels, otherwise {@code false}
*/
public static boolean hasVowels(String input) {
return countVowels(input) > 0;
}
/**
* count the number of vowels
*
* @param input a string prints the count of vowels
*/
public static int countVowels(String input) {
if (input == null) {
return 0;
return false;
}
int cnt = 0;
for (char c : input.toLowerCase().toCharArray()) {
if (VOWELS.contains(c)) {
++cnt;
input = input.toLowerCase();
for (int i = 0; i < input.length(); i++) {
if (VOWELS.contains(input.charAt(i))) {
return true;
}
}
return cnt;
return false;
}
}