lots of exercises in java... from https://github.com/exercism/java

PangramChecker.java 194B

12345678
  1. public class PangramChecker {
  2. public boolean isPangram(String input) {
  3. throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
  4. }
  5. }