forked from exercism/v3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
90 lines (90 loc) · 2.73 KB
/
config.json
File metadata and controls
90 lines (90 loc) · 2.73 KB
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
86
87
88
89
90
{
"language": "F#",
"slug": "fsharp",
"active": true,
"blurb": "F# is a strongly-typed, functional language that is part of Microsoft's .NET language stack. Although F# is great for data science problems, it can elegantly handle almost every problem you throw at it.",
"version": 3,
"online_editor": { "indent_style": "space", "indent_size": 4 },
"exercises": {
"concept": [
{
"slug": "arrays",
"uuid": "280e8400-1a46-4ef5-b48d-b24611aaace2",
"concepts": ["arrays"],
"prerequisites": ["booleans", "pattern-matching"]
},
{
"slug": "basics",
"uuid": "1fc8216e-6519-11ea-bc55-0242ac130003",
"concepts": ["basics"],
"prerequisites": []
},
{
"slug": "booleans",
"uuid": "82470e36-6447-11ea-bc55-0242ac130003",
"concepts": ["booleans"],
"prerequisites": ["basics"]
},
{
"slug": "datetimes",
"uuid": "160d7d56-5a0e-11ea-8e2d-0242ac130003",
"concepts": ["datetimes"],
"prerequisites": ["classes", "numbers", "strings"]
},
{
"slug": "discriminated-unions",
"uuid": "263670c8-6915-11ea-bc55-0242ac130003",
"concepts": ["discriminated-unions"],
"prerequisites": ["basics"]
},
{
"slug": "floating-point-numbers",
"uuid": "4eb8d86f-7123-473e-9d96-7939e9652608",
"concepts": ["floating-point-numbers"],
"prerequisites": ["conditionals", "numbers"]
},
{
"slug": "lists",
"uuid": "ef2df8b0-63a8-11ea-bc55-0242ac130003",
"concepts": ["lists"],
"prerequisites": ["booleans", "strings"]
},
{
"slug": "numbers",
"uuid": "6ea2765e-5885-11ea-82b4-0242ac130003",
"concepts": ["conditionals", "numbers"],
"prerequisites": ["basics"]
},
{
"slug": "pattern-matching",
"uuid": "d605385d-fd8a-45fa-a320-4d7c40213769",
"concepts": ["pattern-matching"],
"prerequisites": ["conditionals", "strings"]
},
{
"slug": "records",
"uuid": "08ae8519-9dc9-47fe-82ad-8081fe642fe2",
"concepts": ["records"],
"prerequisites": ["booleans", "numbers", "pattern-matching", "strings"]
},
{
"slug": "recursion",
"uuid": "fad55806-69e9-11ea-bc55-0242ac130003",
"concepts": ["recursion"],
"prerequisites": [
"discriminated-unions",
"higher-order-functions",
"lists",
"pattern-matching"
]
},
{
"slug": "strings",
"uuid": "9c2aad8a-53ee-11ea-8d77-2e728ce88125",
"concepts": ["strings"],
"prerequisites": ["basics"]
}
],
"practice": []
}
}