forked from exercism/v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
65 lines (65 loc) · 1.67 KB
/
config.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
{
"language": "Python",
"slug": "python",
"active": true,
"blurb": "Python is a clear and powerful object-oriented programming language with an elegant and easy-to-read syntax. It is ideal for prototyping and ad-hoc tasks, but also sees wide use in scientific computing, web development, and automation.",
"version": 3,
"online_editor": {
"indent_style": "space",
"indent_size": 4
},
"exercises": {
"concept": [
{
"slug": "strings",
"uuid": "5a9b42fb-ddf4-424b-995d-f9952ea63c37",
"concepts": ["strings"],
"prerequisites": ["functions"]
},
{
"slug": "tuples",
"uuid": "7ecd42c1-2ed5-487a-bc89-71c9cbad9b05",
"concepts": ["tuples"],
"prerequisites": [
"bools",
"for-loops",
"functions",
"if-keyword",
"in-keyword",
"integers",
"return-keyword"
]
},
{
"slug": "basics",
"uuid": "dfd7dc01-3544-4f61-a063-af8530d6e601",
"concepts": ["basics"],
"prerequisites": []
},
{
"slug": "bools",
"uuid": "c050470d-ef22-4187-aaac-239e07955a4d",
"concepts": ["bools"],
"prerequisites": ["basics"]
},
{
"slug": "string-formatting",
"uuid": "24f73576-97b3-4ba3-b504-309f2bbe59b9",
"concepts": ["string-formatting"],
"prerequisites": [
"bools",
"for-loops",
"functions",
"if-keyword",
"in-keyword",
"integers",
"return-keyword",
"strings",
"tuples",
"lists"
]
}
],
"practice": []
}
}