forked from exercism/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
37 lines (37 loc) · 1.15 KB
/
config.json
File metadata and controls
37 lines (37 loc) · 1.15 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
{
"introduction": {
"authors": ["colinleach",
"BethanyG"],
"contributors": []
},
"approaches": [
{
"uuid": "952835d1-e9d1-4dc3-b2c2-aad703e8db2e",
"slug": "ability-method",
"title": "Ability Method",
"blurb": "Use one method to generate dice rolls and return ability values.",
"authors": ["bethanyg"]
},
{
"uuid": "5022c80c-8ca1-45e4-aa5f-d91bb3f53441",
"slug": "dice-roll-static-method",
"title": "Dice Roll Static Method",
"blurb": "Use a separate static method to conduct dice rolls.",
"authors": ["bethanyg"]
},
{
"uuid": "98af6c1d-5ab4-476d-9041-30b8f55e13eb",
"slug": "stand-alone-dice-roll-function",
"title": "Stand-alone Dice Roll Function",
"blurb": "Create a dice roll function outside the Character class.",
"authors": ["bethanyg"]
},
{
"uuid": "5dd9d9b0-bfa5-43b2-8e95-787425349fc4",
"slug": "loop-and-setattr-in-init",
"title": "Loop and setattr in init",
"blurb": "Use a tuple of attributes, a loop, and setattr in init to assign ability values.",
"authors": ["bethanyg"]
}
]
}