Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -38,42 +38,71 @@ Each key in the JSON object represents a column header, and the corresponding va
|
|
38 |
#### Answer:
|
39 |
```json
|
40 |
{
|
41 |
-
"
|
42 |
-
"0": "
|
43 |
-
"1": "
|
44 |
-
"2": "
|
45 |
-
"3": "
|
46 |
-
"4": "
|
|
|
|
|
47 |
},
|
48 |
-
"
|
49 |
-
"0": "
|
50 |
-
"1": "
|
51 |
-
"2": "
|
52 |
-
"3": "
|
53 |
-
"4": "
|
|
|
|
|
54 |
},
|
55 |
-
"
|
56 |
-
"0": "
|
57 |
-
"1": "
|
58 |
-
"2": "
|
59 |
-
"3": "
|
60 |
-
"4": "
|
|
|
|
|
61 |
},
|
62 |
-
"
|
63 |
-
"0": "
|
64 |
-
"1": "
|
65 |
-
"2": "
|
66 |
-
"3": "
|
67 |
-
"4": "
|
|
|
|
|
68 |
},
|
69 |
-
"
|
70 |
-
"0":
|
71 |
-
"1":
|
72 |
-
"2":
|
73 |
-
"3":
|
74 |
-
"4":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
}
|
76 |
}
|
|
|
77 |
```
|
78 |
|
79 |
### Example 2:
|
|
|
38 |
#### Answer:
|
39 |
```json
|
40 |
{
|
41 |
+
"date": {
|
42 |
+
"0": "1st",
|
43 |
+
"1": "3rd",
|
44 |
+
"2": "4th",
|
45 |
+
"3": "11th",
|
46 |
+
"4": "17th",
|
47 |
+
"5": "24th",
|
48 |
+
"6": "25th"
|
49 |
},
|
50 |
+
"opponent": {
|
51 |
+
"0": "bracknell bees",
|
52 |
+
"1": "slough jets",
|
53 |
+
"2": "slough jets",
|
54 |
+
"3": "wightlink raiders",
|
55 |
+
"4": "romford raiders",
|
56 |
+
"5": "swindon wildcats",
|
57 |
+
"6": "swindon wildcats"
|
58 |
},
|
59 |
+
"venue": {
|
60 |
+
"0": "home",
|
61 |
+
"1": "away",
|
62 |
+
"2": "home",
|
63 |
+
"3": "home",
|
64 |
+
"4": "home",
|
65 |
+
"5": "away",
|
66 |
+
"6": "home"
|
67 |
},
|
68 |
+
"result": {
|
69 |
+
"0": "won 4 - 1",
|
70 |
+
"1": "won 7 - 3",
|
71 |
+
"2": "lost 5 - 3",
|
72 |
+
"3": "won 7 - 2",
|
73 |
+
"4": "lost 3 - 4",
|
74 |
+
"5": "lost 2 - 4",
|
75 |
+
"6": "won 8 - 2"
|
76 |
},
|
77 |
+
"attendance": {
|
78 |
+
"0": 1753,
|
79 |
+
"1": 751,
|
80 |
+
"2": 1421,
|
81 |
+
"3": 1552,
|
82 |
+
"4": 1535,
|
83 |
+
"5": 902,
|
84 |
+
"6": 2124
|
85 |
+
},
|
86 |
+
"competition": {
|
87 |
+
"0": "league",
|
88 |
+
"1": "league",
|
89 |
+
"2": "league",
|
90 |
+
"3": "league",
|
91 |
+
"4": "league",
|
92 |
+
"5": "league",
|
93 |
+
"6": "league"
|
94 |
+
},
|
95 |
+
"man of the match": {
|
96 |
+
"0": "martin bouz",
|
97 |
+
"1": "joe watkins",
|
98 |
+
"2": "nick cross",
|
99 |
+
"3": "neil liddiard",
|
100 |
+
"4": "stuart potts",
|
101 |
+
"5": "lukas smital",
|
102 |
+
"6": "vaclav zavoral"
|
103 |
}
|
104 |
}
|
105 |
+
|
106 |
```
|
107 |
|
108 |
### Example 2:
|