mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-31 08:47:02 +08:00
Add automatic linter (#4214)
This commit is contained in:
@ -11,8 +11,7 @@ import java.util.Set;
|
||||
*/
|
||||
public class CheckVowels {
|
||||
|
||||
private static final Set<Character> VOWELS
|
||||
= new HashSet<>(Arrays.asList('a', 'e', 'i', 'o', 'u'));
|
||||
private static final Set<Character> VOWELS = new HashSet<>(Arrays.asList('a', 'e', 'i', 'o', 'u'));
|
||||
|
||||
/**
|
||||
* Check if a string is has vowels or not
|
||||
|
Reference in New Issue
Block a user