git reimport

This commit is contained in:
2019-03-15 13:47:54 +04:00
commit 3b461f73de
489 changed files with 1631603 additions and 0 deletions

12
InteractorClass.template Normal file
View File

@@ -0,0 +1,12 @@
package %package%;
import net.egork.chelper.tester.Verdict;
import net.egork.chelper.tester.State;
import java.io.InputStream;
import java.io.OutputStream;
public class %InteractorClass% {
public Verdict interact(InputStream input, InputStream solutionOutput, OutputStream solutionInput, State<Boolean> state) {
return Verdict.UNDECIDED;
}
}