Skip to content

Commit

Permalink
chore: test용 dummy data 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
cranemont committed Feb 23, 2023
1 parent 2b094e0 commit c17a0dc
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
6 changes: 4 additions & 2 deletions tests/data/submission/1_answer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"problemId": 1,
"code": "#include <stdio.h>\n\nint main (void) {\n int a; scanf(\"%d\\n\", &a); printf(\"%d\\n\", a); \nreturn 0;\n}\n",
"language": "C"
"code": "#include<stdio.h>\n\n int main () {\n int a;\n scanf(\"%d\\n\", &a);\n printf(\"%d\\n\", a);\n}\n",
"language": "C",
"timeLimit": 1000,
"memoryLimit": 268435456
}
7 changes: 7 additions & 0 deletions tests/data/submission/1_compile_error.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"problemId": 1,
"code": "#",
"language": "C",
"timeLimit": 1000,
"memoryLimit": 268435456
}
4 changes: 3 additions & 1 deletion tests/data/submission/1_partial_answer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"problemId": 1,
"code": "#include <stdio.h>\n\nint main (void) {\n int a = 1; printf(\"%d\\n\", a); \nreturn 0;\n}\n",
"language": "C"
"language": "C",
"timeLimit": 1000,
"memoryLimit": 268435456
}
4 changes: 3 additions & 1 deletion tests/data/submission/1_wrong.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"problemId": 1,
"code": "#include <stdio.h>\n\nint main (void) {\n int a = 10; printf(\"%d\\n\", a); \nreturn 0;\n}\n",
"language": "C"
"language": "C",
"timeLimit": 1000,
"memoryLimit": 268435456
}

0 comments on commit c17a0dc

Please sign in to comment.