We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9b8924 commit c7908ffCopy full SHA for c7908ff
GuessingGame.java
@@ -0,0 +1,8 @@
1
+public interface GuessingGame {
2
+
3
+ void setAnswer(String ans);
4
+ void guess(String s);
5
+ String getOutput();
6
+ boolean isWon();
7
+ boolean isLost();
8
+}
0 commit comments