aniervs / GraderMock

This mocks a grader from standard programming competitions (I/O checks, and AC,WA,MLE,TLE,RTE verdicts)
0 stars 2 forks source link

Force reading from stdin and writing to stdout #10

Open aniervs opened 4 months ago

aniervs commented 4 months ago

Right now we are forcing the code to read from input_file.txt and writing into output_file.txt. This posses an annoying restriction for the users. We want to force the users to read from STDIN and to print into STDOUT. This implies changing the way we're retrieving the testcases and the way we give the input to the code.