Explorar el Código

pangram: standardize starter implementation

Stuart Kent hace 9 años
padre
commit
b1bc5fc3dc
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2
    1
      exercises/pangram/src/main/java/PangramChecker.java

+ 2
- 1
exercises/pangram/src/main/java/PangramChecker.java Ver fichero

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
 }