Add automatic linter (#4214)

This commit is contained in:
acbin
2023-06-09 20:05:14 +08:00
committed by GitHub
parent 00282efd8b
commit 415a04ea7f
188 changed files with 661 additions and 1133 deletions

View File

@ -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