-
Notifications
You must be signed in to change notification settings - Fork 4
/
exercise_data.json
85 lines (85 loc) · 2.07 KB
/
exercise_data.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"course": "Active Handout Example 2022",
"exercises": {
"reference/custom-exercise/": {
"random-question_1": {
"tags": [
"random-question",
"reference"
],
"slug": "reference/custom-exercise/random-question_1"
}
},
"reference/exercise/": {
"exercise_1": {
"tags": [
"reference"
],
"slug": "reference/exercise/exercise_1"
}
},
"reference/multiple-choice/": {
"choice_1": {
"tags": [
"reference",
"choice-exercise"
],
"slug": "reference/multiple-choice/choice_1",
"answer_idx": 2
},
"choice_2": {
"tags": [
"reference",
"choice-exercise"
],
"slug": "reference/multiple-choice/choice_2",
"answer_idx": 2
}
},
"reference/parsons/": {
"parsons_1": {
"tags": [
"parsons-exercise",
"reference"
],
"slug": "reference/parsons/parsons_1",
"answer": "def teste():\n for i in range(10):\n print(i+2)\n print('abc')\n return 4\n"
},
"parsons_2": {
"tags": [
"parsons-exercise",
"reference"
],
"slug": "reference/parsons/parsons_2",
"answer": "def teste():\n print('abc')2\n for i in range(10):2\n print(i+2)2\n return 42\n"
}
},
"reference/text-questions/": {
"short_1": {
"tags": [
"text-exercise",
"reference",
"short-text"
],
"slug": "reference/text-questions/short_1"
},
"long_2": {
"tags": [
"text-exercise",
"reference",
"long-text"
],
"slug": "reference/text-questions/long_2"
}
}
},
"tags": {
"random-question": "random-question",
"short-text": "short-text",
"long-text": "long-text",
"parsons-exercise": "parsons-exercise",
"text-exercise": "text-exercise",
"reference": "reference",
"choice-exercise": "choice-exercise"
}
}