-
Notifications
You must be signed in to change notification settings - Fork 0
/
receive.json
67 lines (67 loc) · 1.74 KB
/
receive.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"gradingId": "whatever",
"links": [
{
"EntityId": 123456789,
"filename" : "youx8420_a02.zip",
"link": "https://mylearningspace.wlu.ca/blahblah"
},
{
"EntityId": 123456790,
"filename" : "leix5490_a02.zip",
"link": "https://mylearningspace.wlu.ca/blahblah"
}
],
"configuration": [
{
"filename": "a2q1.c",
"testCases": [
{
"input": "",
"output": "need more than two integer arguments: 2 1 2 3 4",
"marks": 1
},
{
"input": "1 2 3 4",
"output": "2*1^2 + 3*1^1 + 4*1^0 = 9",
"marks": 1
},
{
"input": "10 9 8 7 6 5 4",
"output": "9*10^5 + 8*10^4 + 7*10^3 + 6*10^2 + 5*10^1 + 4*10^0 = 987654",
"marks": 1
}
]
},
{
"filename": "a2q2.c",
"testCases": [
{
"input": "",
"output": "need more than two integer arguments: 2 1 2 3 4",
"marks": 1
},
{
"input": "1 2 3 4",
"output": "2*1^2 + 3*1^1 + 4*1^0 = 9",
"marks": 1
},
{
"input": "10 9 8 7 6 5 4",
"output": "9*10^5 + 8*10^4 + 7*10^3 + 6*10^2 + 5*10^1 + 4*10^0 = 987654",
"marks": 1
},
{
"input": "5 6 7",
"output": "6*5^1 + 7*5^0 = 37",
"marks": 1
},
{
"input": "4",
"output": "need more than two integer arguments: 2 1 2 3 4",
"marks": 1
}
]
}
]
}