Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 16, 2020 01:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/95e15a7fc6c4557135d3ea30d6118c86 to your computer and use it in GitHub Desktop.
Save parzibyte/95e15a7fc6c4557135d3ea30d6118c86 to your computer and use it in GitHub Desktop.
public static boolean esConsonante(char letra) {
return "bcdfghjklmnñpqrstvwxyz".contains(String.valueOf(letra).toLowerCase());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment