-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathconfig.json
188 lines (188 loc) · 4.74 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
{
"language": "PL/SQL",
"slug": "plsql",
"active": false,
"status": {
"concept_exercises": false,
"test_runner": false,
"representer": false,
"analyzer": false
},
"blurb": "PL/SQL extends SQL with procedural elements, like loops, conditions and variables. PL/SQL is designed to work on Oracle DB.",
"version": 3,
"online_editor": {
"indent_style": "space",
"indent_size": 4,
"highlightjs_language": "sql"
},
"files": {
"solution": [
"ut_%{snake_slug}#.plsql"
],
"test": [
"ut_%{snake_slug}#.plsql"
],
"example": [
"example.plsql"
],
"exemplar": [
".meta/exemplar.plsql"
]
},
"exercises": {
"concept": [],
"practice": [
{
"slug": "binary",
"name": "Binary",
"uuid": "6277f225-5d28-45f1-b020-9b821150ecfe",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"math"
]
},
{
"slug": "difference-of-squares",
"name": "Difference of Squares",
"uuid": "f630b17b-59c1-448b-8880-85bb0c72ba5a",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"math"
]
},
{
"slug": "gigasecond",
"name": "Gigasecond",
"uuid": "6722fe30-30d2-4e99-87de-03b1a6eee0d6",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": null
},
{
"slug": "grains",
"name": "Grains",
"uuid": "1d661c32-c75d-4c0b-bf88-ed0112bb1ab2",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": null
},
{
"slug": "hamming",
"name": "Hamming",
"uuid": "b779f211-ecec-45cc-8641-e7cf87ff66ce",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": null
},
{
"slug": "hello-world",
"name": "Hello World",
"uuid": "7873ac3b-7f9e-45b3-b509-5a9c7dc84130",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": null
},
{
"slug": "leap",
"name": "Leap",
"uuid": "50e2a7c5-3f71-448d-b203-65b7c0e3d6d5",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": null
},
{
"slug": "nth-prime",
"name": "Nth Prime",
"uuid": "bede5fe0-43bf-4483-9fc3-7030df042515",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": [
"math"
]
},
{
"slug": "raindrops",
"name": "Raindrops",
"uuid": "2eaf11fe-e56e-4512-b8af-8fb637582a5e",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": null
},
{
"slug": "rna-transcription",
"name": "RNA Transcription",
"uuid": "eec6c29b-fbbb-48d5-a0e9-4c902281390e",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": null
},
{
"slug": "roman-numerals",
"name": "Roman Numerals",
"uuid": "fc75b71e-e3e6-43b2-940b-65c06a6f9bc5",
"practices": [],
"prerequisites": [],
"difficulty": 1,
"topics": null
}
]
},
"concepts": [],
"key_features": [
{
"title": "Tight SQL integration",
"content": "All the declarative power of SQL with the processing power of procedural languages.",
"icon": "cross-platform"
},
{
"title": "High performance",
"content": "Send statements directly to the database and significantly reduce traffic between app and db code.",
"icon": "fast"
},
{
"title": "High productivity",
"content": "Compact code for manipulating data. Rich features that save designing and debugging time.",
"icon": "productive"
},
{
"title": "Support for OOP",
"content": "Full support for object oriented programming and abstract datatypes.",
"icon": "general-purpose"
},
{
"title": "Portable",
"content": "Run your application on any OS or platform that your database runs on.",
"icon": "portable"
},
{
"title": "Manageable and Scalable",
"content": "Centralize application processing on the DB server and support thousands of concurrent users easily.",
"icon": "web"
}
],
"tags": [
"paradigm/declarative",
"paradigm/imperative",
"paradigm/object_oriented",
"paradigm/procedural",
"typing/static",
"typing/strong",
"execution_mode/compiled",
"execution_mode/interpreted",
"platform/linux",
"runtime/language_specific",
"used_for/backends"
]
}