Show More
Commit Description:
handle the case when problem id or submission id is null. Grader will simply skip such request. Add more report on console (for command line grading)...
Commit Description:
handle the case when problem id or submission id is null. Grader will simply skip such request. Add more report on console (for command line grading) (mercurial grafted from d233105d3965c5368c9b33125f390e39b25f910e)
File last commit:
Show/Diff file:
Action:
test/data/test1_correct_cc.cc | 14 lines | 136 B | text/x-c | CppLexer |
Jittat Fakcharoenphol
added regression test for c++ submission
r120 /*
LANG: C++
*/
#include <cstdio>
int main()
{
int a,b,r;
r = scanf("%d %d",&a,&b);
printf("%d\n",a+b);
Jittat Fakcharoenphol
fixed grader to work with ruby 1.9
r137 a += r;
Jittat Fakcharoenphol
added regression test for c++ submission
r120 return 0;
}