Parcourir la source

pangram: standardize starter implementation

Stuart Kent il y a 9 ans
Parent
révision
b1bc5fc3dc
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2
    1
      exercises/pangram/src/main/java/PangramChecker.java

+ 2
- 1
exercises/pangram/src/main/java/PangramChecker.java Voir le fichier

1
 public class PangramChecker {
1
 public class PangramChecker {
2
 
2
 
3
     public boolean isPangram(String input) {
3
     public boolean isPangram(String input) {
4
-        throw new UnsupportedOperationException("Method has not been implemented yet.");
4
+        throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
5
     }
5
     }
6
+
6
 }
7
 }