trackler 2.2.1.147 → 2.2.1.148
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/trackler/version.rb +1 -1
- data/tracks/crystal/Makefile +1 -1
- data/tracks/crystal/exercises/acronym/spec/acronym_spec.cr +2 -6
- data/tracks/crystal/exercises/binary/spec/binary_spec.cr +1 -1
- data/tracks/crystal/exercises/difference-of-squares/spec/difference_of_squares_spec.cr +10 -14
- data/tracks/crystal/exercises/run-length-encoding/spec/run_length_encoding_spec.cr +29 -9
- data/tracks/crystal/generator/src/generators/acronym.cr +1 -1
- data/tracks/crystal/generator/src/generators/binary.cr +1 -1
- data/tracks/crystal/generator/src/generators/difference_of_squares.cr +6 -7
- data/tracks/crystal/generator/src/generators/run_length_encoding.cr +20 -10
- data/tracks/csharp/config.json +477 -477
- data/tracks/elixir/exercises/largest-series-product/example.exs +1 -1
- data/tracks/elm/exercises/phone-number/PhoneNumber.elm +1 -6
- data/tracks/elm/exercises/phone-number/tests/Tests.elm +22 -37
- data/tracks/elm/exercises/run-length-encoding/tests/Tests.elm +55 -31
- data/tracks/fsharp/generators/Exercise.fs +27 -6
- data/tracks/fsharp/generators/Generators.fs +37 -45
- data/tracks/fsharp/generators/Templates.fs +15 -44
- data/tracks/haskell/.travis.yml +1 -0
- data/tracks/haskell/bin/check-configlet-fmt.sh +42 -0
- data/tracks/haskell/config/maintainers.json +13 -13
- data/tracks/haskell/config.json +212 -250
- data/tracks/java/exercises/sublist/.meta/version +1 -1
- data/tracks/java/exercises/word-search/.meta/version +1 -1
- data/tracks/nim/config.json +10 -0
- data/tracks/nim/exercises/reverse-string/README.md +13 -0
- data/tracks/nim/exercises/reverse-string/example.nim +4 -0
- data/tracks/nim/exercises/reverse-string/reverse_string_test.nim +20 -0
- data/tracks/objective-c/config.json +10 -0
- data/tracks/objective-c/exercises/reverse-string/README.md +34 -0
- data/tracks/objective-c/exercises/reverse-string/ReverseStringExample.h +7 -0
- data/tracks/objective-c/exercises/reverse-string/ReverseStringExample.m +22 -0
- data/tracks/objective-c/exercises/reverse-string/ReverseStringTest.m +51 -0
- data/tracks/objective-c/xcodeProject/ObjectiveC.xcodeproj/project.pbxproj +18 -0
- data/tracks/objective-c/xcodeProject/ObjectiveC.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- data/tracks/ruby/config/maintainers.json +25 -25
- data/tracks/ruby/config.json +203 -371
- data/tracks/ruby/exercises/bob/.meta/.version +1 -1
- data/tracks/ruby/exercises/bob/.meta/generator/bob_case.rb +3 -2
- data/tracks/ruby/exercises/bob/.meta/solutions/bob.rb +3 -1
- data/tracks/ruby/exercises/bob/README.md +2 -0
- data/tracks/ruby/exercises/bob/bob_test.rb +27 -27
- data/tracks/ruby/exercises/hamming/RUNNING_TESTS.md +1 -1
- data/tracks/rust/.travis.yml +1 -0
- data/tracks/rust/_test/check-configlet-fmt.sh +37 -0
- data/tracks/rust/config/maintainers.json +23 -23
- data/tracks/rust/config.json +246 -246
- metadata +12 -3
- data/tracks/elm/exercises/run-length-encoding/RunLengthEncodingPropertyChecks.elm +0 -63
data/tracks/rust/config.json
CHANGED
@@ -1,21 +1,26 @@
|
|
1
1
|
{
|
2
2
|
"language": "Rust",
|
3
|
-
"blurb": "Rust is a compiled programming language designed for speed, concurrency, and memory safety. Rust programs can run almost anywhere, from low-power embedded devices to web servers.",
|
4
3
|
"active": true,
|
4
|
+
"blurb": "Rust is a compiled programming language designed for speed, concurrency, and memory safety. Rust programs can run almost anywhere, from low-power embedded devices to web servers.",
|
5
|
+
"foregone": [
|
6
|
+
"binary",
|
7
|
+
"octal",
|
8
|
+
"trinary"
|
9
|
+
],
|
5
10
|
"exercises": [
|
6
11
|
{
|
7
|
-
"uuid": "13ec1ebe-d71b-436f-ab12-25305e814171",
|
8
12
|
"slug": "hello-world",
|
13
|
+
"uuid": "13ec1ebe-d71b-436f-ab12-25305e814171",
|
9
14
|
"core": false,
|
10
15
|
"unlocked_by": null,
|
11
16
|
"difficulty": 1,
|
12
17
|
"topics": [
|
13
|
-
"println
|
18
|
+
"println"
|
14
19
|
]
|
15
20
|
},
|
16
21
|
{
|
17
|
-
"uuid": "f880b1ef-8f66-41f3-bb89-f39a4ed592a2",
|
18
22
|
"slug": "gigasecond",
|
23
|
+
"uuid": "f880b1ef-8f66-41f3-bb89-f39a4ed592a2",
|
19
24
|
"core": false,
|
20
25
|
"unlocked_by": null,
|
21
26
|
"difficulty": 1,
|
@@ -25,75 +30,75 @@
|
|
25
30
|
]
|
26
31
|
},
|
27
32
|
{
|
28
|
-
"uuid": "ef52f576-9c33-4cc1-a018-803ace8897f6",
|
29
33
|
"slug": "leap",
|
34
|
+
"uuid": "ef52f576-9c33-4cc1-a018-803ace8897f6",
|
30
35
|
"core": false,
|
31
36
|
"unlocked_by": null,
|
32
37
|
"difficulty": 1,
|
33
38
|
"topics": [
|
34
|
-
"mathematics",
|
35
39
|
"booleans",
|
36
|
-
"conditionals"
|
40
|
+
"conditionals",
|
41
|
+
"mathematics"
|
37
42
|
]
|
38
43
|
},
|
39
44
|
{
|
40
|
-
"uuid": "2c12be9b-3a02-4161-8eac-050642ad791f",
|
41
45
|
"slug": "raindrops",
|
46
|
+
"uuid": "2c12be9b-3a02-4161-8eac-050642ad791f",
|
42
47
|
"core": false,
|
43
48
|
"unlocked_by": null,
|
44
49
|
"difficulty": 1,
|
45
50
|
"topics": [
|
46
|
-
"
|
47
|
-
"
|
51
|
+
"case_or_format",
|
52
|
+
"mutable_string"
|
48
53
|
]
|
49
54
|
},
|
50
55
|
{
|
51
|
-
"uuid": "ecf8d1e3-9400-4d1a-8326-2e2820bce024",
|
52
56
|
"slug": "reverse-string",
|
57
|
+
"uuid": "ecf8d1e3-9400-4d1a-8326-2e2820bce024",
|
53
58
|
"core": false,
|
54
59
|
"unlocked_by": null,
|
55
60
|
"difficulty": 1,
|
56
61
|
"topics": [
|
57
|
-
"
|
58
|
-
"
|
59
|
-
"
|
62
|
+
"iterator",
|
63
|
+
"str",
|
64
|
+
"string"
|
60
65
|
]
|
61
66
|
},
|
62
67
|
{
|
63
|
-
"uuid": "ee5048a7-c625-434d-a0a2-4fd54757ee02",
|
64
68
|
"slug": "nth-prime",
|
69
|
+
"uuid": "ee5048a7-c625-434d-a0a2-4fd54757ee02",
|
65
70
|
"core": false,
|
66
71
|
"unlocked_by": null,
|
67
72
|
"difficulty": 1,
|
68
|
-
"topics":
|
73
|
+
"topics": null
|
69
74
|
},
|
70
75
|
{
|
71
|
-
"uuid": "38ef1802-2730-4f94-bafe-d2cd6b3e7f95",
|
72
76
|
"slug": "bob",
|
77
|
+
"uuid": "38ef1802-2730-4f94-bafe-d2cd6b3e7f95",
|
73
78
|
"core": false,
|
74
79
|
"unlocked_by": null,
|
75
80
|
"difficulty": 1,
|
76
81
|
"topics": [
|
77
82
|
"chars",
|
78
|
-
"
|
83
|
+
"string_functions"
|
79
84
|
]
|
80
85
|
},
|
81
86
|
{
|
82
|
-
"uuid": "bb42bc3a-139d-4cab-8b3a-2eac2e1b77b6",
|
83
87
|
"slug": "beer-song",
|
88
|
+
"uuid": "bb42bc3a-139d-4cab-8b3a-2eac2e1b77b6",
|
84
89
|
"core": false,
|
85
90
|
"unlocked_by": null,
|
86
91
|
"difficulty": 1,
|
87
92
|
"topics": [
|
88
93
|
"case",
|
89
|
-
"
|
90
|
-
"
|
91
|
-
"
|
94
|
+
"loop",
|
95
|
+
"string_concatenation",
|
96
|
+
"vector_optional"
|
92
97
|
]
|
93
98
|
},
|
94
99
|
{
|
95
|
-
"uuid": "504f9033-6433-4508-aebb-60ee77b800b9",
|
96
100
|
"slug": "proverb",
|
101
|
+
"uuid": "504f9033-6433-4508-aebb-60ee77b800b9",
|
97
102
|
"core": false,
|
98
103
|
"unlocked_by": null,
|
99
104
|
"difficulty": 1,
|
@@ -102,8 +107,8 @@
|
|
102
107
|
]
|
103
108
|
},
|
104
109
|
{
|
105
|
-
"uuid": "aee49878-f727-400b-8fb5-eaf83447cf87",
|
106
110
|
"slug": "difference-of-squares",
|
111
|
+
"uuid": "aee49878-f727-400b-8fb5-eaf83447cf87",
|
107
112
|
"core": false,
|
108
113
|
"unlocked_by": null,
|
109
114
|
"difficulty": 1,
|
@@ -113,8 +118,8 @@
|
|
113
118
|
]
|
114
119
|
},
|
115
120
|
{
|
116
|
-
"uuid": "be90fe16-9947-45ef-ab8e-eeca4ce3a8c8",
|
117
121
|
"slug": "sum-of-multiples",
|
122
|
+
"uuid": "be90fe16-9947-45ef-ab8e-eeca4ce3a8c8",
|
118
123
|
"core": false,
|
119
124
|
"unlocked_by": null,
|
120
125
|
"difficulty": 1,
|
@@ -124,8 +129,8 @@
|
|
124
129
|
]
|
125
130
|
},
|
126
131
|
{
|
127
|
-
"uuid": "9e69dd5d-472d-43d7-a8bb-60e4a7bed175",
|
128
132
|
"slug": "grains",
|
133
|
+
"uuid": "9e69dd5d-472d-43d7-a8bb-60e4a7bed175",
|
129
134
|
"core": false,
|
130
135
|
"unlocked_by": null,
|
131
136
|
"difficulty": 1,
|
@@ -135,8 +140,8 @@
|
|
135
140
|
]
|
136
141
|
},
|
137
142
|
{
|
138
|
-
"uuid": "6e7cac84-99d1-4f9f-b7d6-48ea43024bc0",
|
139
143
|
"slug": "pythagorean-triplet",
|
144
|
+
"uuid": "6e7cac84-99d1-4f9f-b7d6-48ea43024bc0",
|
140
145
|
"core": false,
|
141
146
|
"unlocked_by": null,
|
142
147
|
"difficulty": 1,
|
@@ -145,8 +150,8 @@
|
|
145
150
|
]
|
146
151
|
},
|
147
152
|
{
|
148
|
-
"uuid": "9f649818-0c82-4b79-b912-4d65b9f60e10",
|
149
153
|
"slug": "prime-factors",
|
154
|
+
"uuid": "9f649818-0c82-4b79-b912-4d65b9f60e10",
|
150
155
|
"core": false,
|
151
156
|
"unlocked_by": null,
|
152
157
|
"difficulty": 1,
|
@@ -155,19 +160,19 @@
|
|
155
160
|
]
|
156
161
|
},
|
157
162
|
{
|
158
|
-
"uuid": "9de405e1-3a05-43cb-8eb3-00b81a2968e9",
|
159
163
|
"slug": "series",
|
164
|
+
"uuid": "9de405e1-3a05-43cb-8eb3-00b81a2968e9",
|
160
165
|
"core": false,
|
161
166
|
"unlocked_by": null,
|
162
167
|
"difficulty": 1,
|
163
168
|
"topics": [
|
164
|
-
"
|
165
|
-
"
|
169
|
+
"strings",
|
170
|
+
"vectors"
|
166
171
|
]
|
167
172
|
},
|
168
173
|
{
|
169
|
-
"uuid": "e652139e-ff3f-4e03-9810-d21f8b0c9e60",
|
170
174
|
"slug": "armstrong-numbers",
|
175
|
+
"uuid": "e652139e-ff3f-4e03-9810-d21f8b0c9e60",
|
171
176
|
"core": false,
|
172
177
|
"unlocked_by": null,
|
173
178
|
"difficulty": 1,
|
@@ -176,18 +181,18 @@
|
|
176
181
|
]
|
177
182
|
},
|
178
183
|
{
|
179
|
-
"uuid": "f9afd650-8103-4373-a284-fa4ecfee7207",
|
180
184
|
"slug": "collatz-conjecture",
|
185
|
+
"uuid": "f9afd650-8103-4373-a284-fa4ecfee7207",
|
181
186
|
"core": false,
|
182
187
|
"unlocked_by": null,
|
183
188
|
"difficulty": 1,
|
184
189
|
"topics": [
|
185
|
-
"
|
190
|
+
"option"
|
186
191
|
]
|
187
192
|
},
|
188
193
|
{
|
189
|
-
"uuid": "23d82e48-d074-11e7-8fab-cec278b6b50a",
|
190
194
|
"slug": "diffie-hellman",
|
195
|
+
"uuid": "23d82e48-d074-11e7-8fab-cec278b6b50a",
|
191
196
|
"core": false,
|
192
197
|
"unlocked_by": null,
|
193
198
|
"difficulty": 1,
|
@@ -196,19 +201,19 @@
|
|
196
201
|
]
|
197
202
|
},
|
198
203
|
{
|
199
|
-
"uuid": "ccebfa12-d224-11e7-8941-cec278b6b50a",
|
200
204
|
"slug": "saddle-points",
|
205
|
+
"uuid": "ccebfa12-d224-11e7-8941-cec278b6b50a",
|
201
206
|
"core": false,
|
202
207
|
"unlocked_by": null,
|
203
208
|
"difficulty": 4,
|
204
209
|
"topics": [
|
205
|
-
"
|
206
|
-
"
|
210
|
+
"iterators",
|
211
|
+
"vectors"
|
207
212
|
]
|
208
213
|
},
|
209
214
|
{
|
210
|
-
"uuid": "79613fd8-b7da-11e7-abc4-cec278b6b50a",
|
211
215
|
"slug": "isogram",
|
216
|
+
"uuid": "79613fd8-b7da-11e7-abc4-cec278b6b50a",
|
212
217
|
"core": false,
|
213
218
|
"unlocked_by": null,
|
214
219
|
"difficulty": 4,
|
@@ -219,216 +224,216 @@
|
|
219
224
|
]
|
220
225
|
},
|
221
226
|
{
|
222
|
-
"uuid": "4ba35adb-230b-49a6-adc9-2d3cd9a4c538",
|
223
227
|
"slug": "say",
|
228
|
+
"uuid": "4ba35adb-230b-49a6-adc9-2d3cd9a4c538",
|
224
229
|
"core": false,
|
225
230
|
"unlocked_by": null,
|
226
231
|
"difficulty": 4,
|
227
232
|
"topics": [
|
228
|
-
"
|
229
|
-
"
|
233
|
+
"modulus",
|
234
|
+
"string_concatenation"
|
230
235
|
]
|
231
236
|
},
|
232
237
|
{
|
233
|
-
"uuid": "4dc9b165-792a-4438-be80-df9aab6f6a9c",
|
234
238
|
"slug": "run-length-encoding",
|
239
|
+
"uuid": "4dc9b165-792a-4438-be80-df9aab6f6a9c",
|
235
240
|
"core": false,
|
236
241
|
"unlocked_by": null,
|
237
242
|
"difficulty": 4,
|
238
243
|
"topics": [
|
239
|
-
"
|
240
|
-
"
|
241
|
-
"
|
242
|
-
"
|
244
|
+
"conversion_between_string_and_int",
|
245
|
+
"loop",
|
246
|
+
"string_concatenation",
|
247
|
+
"use_of_primitive_char"
|
243
248
|
]
|
244
249
|
},
|
245
250
|
{
|
246
|
-
"uuid": "c986c240-46de-419c-8ed6-700eb68f8db6",
|
247
251
|
"slug": "isbn-verifier",
|
252
|
+
"uuid": "c986c240-46de-419c-8ed6-700eb68f8db6",
|
248
253
|
"core": false,
|
249
254
|
"unlocked_by": null,
|
250
255
|
"difficulty": 4,
|
251
256
|
"topics": [
|
252
|
-
"
|
257
|
+
"conversion_between_string_and_int",
|
253
258
|
"loop",
|
254
259
|
"mathematics"
|
255
260
|
]
|
256
261
|
},
|
257
262
|
{
|
258
|
-
"uuid": "20e7d347-b80a-4656-ac34-0825126939ff",
|
259
263
|
"slug": "perfect-numbers",
|
264
|
+
"uuid": "20e7d347-b80a-4656-ac34-0825126939ff",
|
260
265
|
"core": false,
|
261
266
|
"unlocked_by": null,
|
262
267
|
"difficulty": 4,
|
263
268
|
"topics": [
|
264
|
-
"
|
269
|
+
"mathematics"
|
265
270
|
]
|
266
271
|
},
|
267
272
|
{
|
268
|
-
"uuid": "543a3ca2-fb9b-4f20-a873-ff23595d41df",
|
269
273
|
"slug": "clock",
|
274
|
+
"uuid": "543a3ca2-fb9b-4f20-a873-ff23595d41df",
|
270
275
|
"core": false,
|
271
276
|
"unlocked_by": null,
|
272
277
|
"difficulty": 4,
|
273
278
|
"topics": [
|
274
|
-
"traits",
|
275
279
|
"derive",
|
276
|
-
"struct"
|
280
|
+
"struct",
|
281
|
+
"traits"
|
277
282
|
]
|
278
283
|
},
|
279
284
|
{
|
280
|
-
"uuid": "2874216a-0822-4ec2-892e-d451fd89646a",
|
281
285
|
"slug": "hamming",
|
286
|
+
"uuid": "2874216a-0822-4ec2-892e-d451fd89646a",
|
282
287
|
"core": false,
|
283
288
|
"unlocked_by": null,
|
284
289
|
"difficulty": 4,
|
285
290
|
"topics": [
|
286
|
-
"
|
291
|
+
"result"
|
287
292
|
]
|
288
293
|
},
|
289
294
|
{
|
290
|
-
"uuid": "10923b0b-c726-44a7-9e02-b775e7b8b237",
|
291
295
|
"slug": "simple-linked-list",
|
296
|
+
"uuid": "10923b0b-c726-44a7-9e02-b775e7b8b237",
|
292
297
|
"core": false,
|
293
298
|
"unlocked_by": null,
|
294
299
|
"difficulty": 4,
|
295
300
|
"topics": [
|
296
301
|
"lists",
|
297
|
-
"
|
298
|
-
"
|
302
|
+
"struct",
|
303
|
+
"type_conversion"
|
299
304
|
]
|
300
305
|
},
|
301
306
|
{
|
302
|
-
"uuid": "ddc0c1da-6b65-4ed1-8bdc-5e71cd05f720",
|
303
307
|
"slug": "pascals-triangle",
|
308
|
+
"uuid": "ddc0c1da-6b65-4ed1-8bdc-5e71cd05f720",
|
304
309
|
"core": false,
|
305
310
|
"unlocked_by": null,
|
306
311
|
"difficulty": 4,
|
307
312
|
"topics": [
|
308
|
-
"
|
309
|
-
"
|
310
|
-
"
|
313
|
+
"index_optional",
|
314
|
+
"mathematics",
|
315
|
+
"vec"
|
311
316
|
]
|
312
317
|
},
|
313
318
|
{
|
314
|
-
"uuid": "561cc4ff-5e74-4701-a7c2-c4edefa0d068",
|
315
319
|
"slug": "scrabble-score",
|
320
|
+
"uuid": "561cc4ff-5e74-4701-a7c2-c4edefa0d068",
|
316
321
|
"core": false,
|
317
322
|
"unlocked_by": null,
|
318
323
|
"difficulty": 4,
|
319
324
|
"topics": [
|
320
|
-
"
|
321
|
-
"
|
325
|
+
"chaining_higher_order_functions",
|
326
|
+
"hashmap_optional"
|
322
327
|
]
|
323
328
|
},
|
324
329
|
{
|
325
|
-
"uuid": "a24cb7bf-3aac-4051-bcd1-952c2a806187",
|
326
330
|
"slug": "pangram",
|
331
|
+
"uuid": "a24cb7bf-3aac-4051-bcd1-952c2a806187",
|
327
332
|
"core": false,
|
328
333
|
"unlocked_by": null,
|
329
334
|
"difficulty": 4,
|
330
335
|
"topics": [
|
331
|
-
"
|
332
|
-
"
|
336
|
+
"ascii_optional",
|
337
|
+
"filter"
|
333
338
|
]
|
334
339
|
},
|
335
340
|
{
|
336
|
-
"uuid": "3f54853b-cc65-4282-ab25-8dc3fdf43c03",
|
337
341
|
"slug": "nucleotide-count",
|
342
|
+
"uuid": "3f54853b-cc65-4282-ab25-8dc3fdf43c03",
|
338
343
|
"core": false,
|
339
344
|
"unlocked_by": null,
|
340
345
|
"difficulty": 4,
|
341
346
|
"topics": [
|
342
|
-
"
|
347
|
+
"entry_api",
|
343
348
|
"filter",
|
344
|
-
"
|
349
|
+
"match",
|
345
350
|
"mutablity",
|
346
|
-
"
|
351
|
+
"result"
|
347
352
|
]
|
348
353
|
},
|
349
354
|
{
|
350
|
-
"uuid": "8d64bfc3-fc4b-45c4-85f0-e74dc2ea6812",
|
351
355
|
"slug": "luhn",
|
356
|
+
"uuid": "8d64bfc3-fc4b-45c4-85f0-e74dc2ea6812",
|
352
357
|
"core": false,
|
353
358
|
"unlocked_by": null,
|
354
359
|
"difficulty": 4,
|
355
360
|
"topics": [
|
356
|
-
"
|
361
|
+
"higher_order_functions",
|
357
362
|
"iterators",
|
358
|
-
"
|
363
|
+
"str_to_digits"
|
359
364
|
]
|
360
365
|
},
|
361
366
|
{
|
362
|
-
"uuid": "8679c221-d150-4230-b1cd-5ea78ae69db7",
|
363
367
|
"slug": "largest-series-product",
|
368
|
+
"uuid": "8679c221-d150-4230-b1cd-5ea78ae69db7",
|
364
369
|
"core": false,
|
365
370
|
"unlocked_by": null,
|
366
371
|
"difficulty": 4,
|
367
372
|
"topics": [
|
368
|
-
"
|
369
|
-
"
|
370
|
-
"
|
371
|
-
"
|
373
|
+
"char",
|
374
|
+
"higher_order_functions",
|
375
|
+
"result",
|
376
|
+
"windows"
|
372
377
|
]
|
373
378
|
},
|
374
379
|
{
|
375
|
-
"uuid": "6c5c0dc3-4f5b-4f83-bf67-a45bf4ea6be4",
|
376
380
|
"slug": "word-count",
|
381
|
+
"uuid": "6c5c0dc3-4f5b-4f83-bf67-a45bf4ea6be4",
|
377
382
|
"core": false,
|
378
383
|
"unlocked_by": null,
|
379
384
|
"difficulty": 4,
|
380
385
|
"topics": [
|
381
|
-
"hashmap",
|
382
|
-
"str vs string",
|
383
386
|
"chars",
|
384
|
-
"
|
387
|
+
"entry_api",
|
388
|
+
"hashmap",
|
389
|
+
"str_vs_string"
|
385
390
|
]
|
386
391
|
},
|
387
392
|
{
|
388
|
-
"uuid": "53298a14-76a9-4bb9-943a-57c5e79d9cf7",
|
389
393
|
"slug": "atbash-cipher",
|
394
|
+
"uuid": "53298a14-76a9-4bb9-943a-57c5e79d9cf7",
|
390
395
|
"core": false,
|
391
396
|
"unlocked_by": null,
|
392
397
|
"difficulty": 4,
|
393
398
|
"topics": [
|
394
|
-
"
|
395
|
-
"primitive types",
|
396
|
-
"iterators",
|
399
|
+
"ascii",
|
397
400
|
"chars",
|
398
|
-
"
|
401
|
+
"iterators",
|
402
|
+
"primitive_types",
|
403
|
+
"str_vs_string"
|
399
404
|
]
|
400
405
|
},
|
401
406
|
{
|
402
|
-
"uuid": "0cc485e9-43ba-4d97-a622-ee4cb8b9f1f7",
|
403
407
|
"slug": "crypto-square",
|
408
|
+
"uuid": "0cc485e9-43ba-4d97-a622-ee4cb8b9f1f7",
|
404
409
|
"difficulty": 4,
|
405
410
|
"topics": [
|
406
|
-
"str vs string",
|
407
|
-
"primitive types",
|
408
|
-
"iterators",
|
409
|
-
"chars",
|
410
411
|
"arrays",
|
411
412
|
"ascii",
|
413
|
+
"chars",
|
414
|
+
"iterators",
|
415
|
+
"primitive_types",
|
416
|
+
"str_vs_string",
|
412
417
|
"transforming"
|
413
418
|
]
|
414
419
|
},
|
415
420
|
{
|
416
|
-
"uuid": "5dbecc83-2c8d-467d-be05-f28a08f7abcf",
|
417
421
|
"slug": "rotational-cipher",
|
422
|
+
"uuid": "5dbecc83-2c8d-467d-be05-f28a08f7abcf",
|
418
423
|
"core": false,
|
419
424
|
"unlocked_by": null,
|
420
425
|
"difficulty": 4,
|
421
426
|
"topics": [
|
422
|
-
"
|
423
|
-
"primitive types",
|
424
|
-
"iterators",
|
427
|
+
"ascii",
|
425
428
|
"chars",
|
426
|
-
"
|
429
|
+
"iterators",
|
430
|
+
"primitive_types",
|
431
|
+
"str_vs_string"
|
427
432
|
]
|
428
433
|
},
|
429
434
|
{
|
430
|
-
"uuid": "0c8eeef7-4bab-4cf9-9047-c208b5618312",
|
431
435
|
"slug": "etl",
|
436
|
+
"uuid": "0c8eeef7-4bab-4cf9-9047-c208b5618312",
|
432
437
|
"core": false,
|
433
438
|
"unlocked_by": null,
|
434
439
|
"difficulty": 4,
|
@@ -437,319 +442,319 @@
|
|
437
442
|
]
|
438
443
|
},
|
439
444
|
{
|
440
|
-
"uuid": "ddc45979-8a92-4313-a4f8-878562d5a483",
|
441
445
|
"slug": "accumulate",
|
446
|
+
"uuid": "ddc45979-8a92-4313-a4f8-878562d5a483",
|
442
447
|
"core": false,
|
443
448
|
"unlocked_by": null,
|
444
449
|
"difficulty": 4,
|
445
450
|
"topics": [
|
446
|
-
"
|
451
|
+
"function_pointer"
|
447
452
|
]
|
448
453
|
},
|
449
454
|
{
|
450
|
-
"uuid": "26a9102f-26f6-4238-858e-ba20db66f1a9",
|
451
455
|
"slug": "acronym",
|
456
|
+
"uuid": "26a9102f-26f6-4238-858e-ba20db66f1a9",
|
452
457
|
"core": false,
|
453
458
|
"unlocked_by": null,
|
454
459
|
"difficulty": 4,
|
455
460
|
"topics": [
|
456
|
-
"map",
|
457
|
-
"flat_map",
|
458
461
|
"filter",
|
462
|
+
"flat_map",
|
459
463
|
"loops",
|
460
|
-
"
|
464
|
+
"map",
|
465
|
+
"vec"
|
461
466
|
]
|
462
467
|
},
|
463
468
|
{
|
464
|
-
"uuid": "da784b42-1cec-469e-8e48-0be232b17003",
|
465
469
|
"slug": "sieve",
|
470
|
+
"uuid": "da784b42-1cec-469e-8e48-0be232b17003",
|
466
471
|
"core": false,
|
467
472
|
"unlocked_by": null,
|
468
473
|
"difficulty": 4,
|
469
474
|
"topics": [
|
470
|
-
"vector",
|
471
475
|
"map",
|
472
|
-
"
|
476
|
+
"vector",
|
477
|
+
"while_let_optional"
|
473
478
|
]
|
474
479
|
},
|
475
480
|
{
|
476
|
-
"uuid": "9a219d87-cd32-4e12-a879-bfb5747c2369",
|
477
481
|
"slug": "rna-transcription",
|
482
|
+
"uuid": "9a219d87-cd32-4e12-a879-bfb5747c2369",
|
478
483
|
"core": false,
|
479
484
|
"unlocked_by": null,
|
480
485
|
"difficulty": 4,
|
481
486
|
"topics": [
|
482
|
-
"Result",
|
483
487
|
"match",
|
484
|
-
"
|
485
|
-
"
|
488
|
+
"result",
|
489
|
+
"str_vs_string",
|
490
|
+
"struct"
|
486
491
|
]
|
487
492
|
},
|
488
493
|
{
|
489
|
-
"uuid": "c0bc2af6-d7af-401f-9ed8-bbe31977666c",
|
490
494
|
"slug": "triangle",
|
495
|
+
"uuid": "c0bc2af6-d7af-401f-9ed8-bbe31977666c",
|
491
496
|
"core": false,
|
492
497
|
"unlocked_by": null,
|
493
498
|
"difficulty": 4,
|
494
499
|
"topics": [
|
495
|
-
"
|
496
|
-
"
|
500
|
+
"mathematics",
|
501
|
+
"struct"
|
497
502
|
]
|
498
503
|
},
|
499
504
|
{
|
500
|
-
"uuid": "498be645-734a-49b7-aba7-aae1e051e1f0",
|
501
505
|
"slug": "roman-numerals",
|
506
|
+
"uuid": "498be645-734a-49b7-aba7-aae1e051e1f0",
|
502
507
|
"core": false,
|
503
508
|
"unlocked_by": null,
|
504
509
|
"difficulty": 4,
|
505
510
|
"topics": [
|
511
|
+
"loops",
|
506
512
|
"mutable",
|
507
513
|
"results",
|
508
|
-
"loops",
|
509
514
|
"struct",
|
510
515
|
"traits"
|
511
516
|
]
|
512
517
|
},
|
513
518
|
{
|
514
|
-
"uuid": "54c11dae-3878-4bec-b8d6-775b7d4f317b",
|
515
519
|
"slug": "all-your-base",
|
520
|
+
"uuid": "54c11dae-3878-4bec-b8d6-775b7d4f317b",
|
516
521
|
"core": false,
|
517
522
|
"unlocked_by": null,
|
518
523
|
"difficulty": 4,
|
519
524
|
"topics": [
|
520
|
-
"Result",
|
521
525
|
"enumerate",
|
522
526
|
"fold",
|
523
|
-
"map"
|
527
|
+
"map",
|
528
|
+
"result"
|
524
529
|
]
|
525
530
|
},
|
526
531
|
{
|
527
|
-
"uuid": "5ca03812-c229-48db-b7fd-0889b22f8d1d",
|
528
532
|
"slug": "grade-school",
|
533
|
+
"uuid": "5ca03812-c229-48db-b7fd-0889b22f8d1d",
|
529
534
|
"core": false,
|
530
535
|
"unlocked_by": null,
|
531
536
|
"difficulty": 4,
|
532
537
|
"topics": [
|
538
|
+
"entry_api",
|
539
|
+
"option",
|
533
540
|
"struct",
|
534
|
-
"
|
535
|
-
"Vec",
|
536
|
-
"Option"
|
541
|
+
"vec"
|
537
542
|
]
|
538
543
|
},
|
539
544
|
{
|
540
|
-
"uuid": "dd74b65c-0d26-4821-9add-064e32e3a5bd",
|
541
545
|
"slug": "binary-search",
|
546
|
+
"uuid": "dd74b65c-0d26-4821-9add-064e32e3a5bd",
|
542
547
|
"core": false,
|
543
548
|
"unlocked_by": null,
|
544
549
|
"difficulty": 4,
|
545
550
|
"topics": [
|
551
|
+
"option",
|
546
552
|
"slices",
|
547
|
-
"
|
548
|
-
"Option"
|
553
|
+
"trait_optional"
|
549
554
|
]
|
550
555
|
},
|
551
556
|
{
|
552
|
-
"uuid": "1beb8b0c-d06d-4569-80e5-866ed01a7a66",
|
553
557
|
"slug": "robot-simulator",
|
558
|
+
"uuid": "1beb8b0c-d06d-4569-80e5-866ed01a7a66",
|
554
559
|
"core": false,
|
555
560
|
"unlocked_by": null,
|
556
561
|
"difficulty": 4,
|
557
562
|
"topics": [
|
558
|
-
"
|
559
|
-
"
|
563
|
+
"enum",
|
564
|
+
"immutability"
|
560
565
|
]
|
561
566
|
},
|
562
567
|
{
|
563
|
-
"uuid": "40729822-4265-4c14-b03f-a00bff5f24bb",
|
564
568
|
"slug": "bracket-push",
|
569
|
+
"uuid": "40729822-4265-4c14-b03f-a00bff5f24bb",
|
565
570
|
"core": false,
|
566
571
|
"unlocked_by": null,
|
567
572
|
"difficulty": 4,
|
568
573
|
"topics": [
|
569
|
-
"
|
570
|
-
"
|
574
|
+
"from_trait",
|
575
|
+
"stack_or_recursion"
|
571
576
|
]
|
572
577
|
},
|
573
578
|
{
|
574
|
-
"uuid": "f9131b5d-91dd-4514-983d-4abc22bb5d5c",
|
575
579
|
"slug": "luhn-from",
|
580
|
+
"uuid": "f9131b5d-91dd-4514-983d-4abc22bb5d5c",
|
576
581
|
"core": false,
|
577
582
|
"unlocked_by": null,
|
578
583
|
"difficulty": 4,
|
579
584
|
"topics": [
|
580
|
-
"
|
581
|
-
"
|
585
|
+
"from_trait",
|
586
|
+
"higher_order_functions",
|
582
587
|
"iterators",
|
583
|
-
"
|
588
|
+
"str_to_digits"
|
584
589
|
]
|
585
590
|
},
|
586
591
|
{
|
587
|
-
"uuid": "30c33e3d-8034-4618-8346-2ae906961579",
|
588
592
|
"slug": "queen-attack",
|
593
|
+
"uuid": "30c33e3d-8034-4618-8346-2ae906961579",
|
589
594
|
"core": false,
|
590
595
|
"unlocked_by": null,
|
591
596
|
"difficulty": 4,
|
592
597
|
"topics": [
|
598
|
+
"result",
|
593
599
|
"struct",
|
594
|
-
"
|
595
|
-
"Result"
|
600
|
+
"trait_optional"
|
596
601
|
]
|
597
602
|
},
|
598
603
|
{
|
599
|
-
"uuid": "fec447a5-cf11-4ddd-b0fd-63bcc4e245cd",
|
600
604
|
"slug": "bowling",
|
605
|
+
"uuid": "fec447a5-cf11-4ddd-b0fd-63bcc4e245cd",
|
601
606
|
"core": false,
|
602
607
|
"unlocked_by": null,
|
603
608
|
"difficulty": 4,
|
604
609
|
"topics": [
|
605
|
-
"
|
606
|
-
"
|
607
|
-
"
|
610
|
+
"goofy_bowling_logic",
|
611
|
+
"result",
|
612
|
+
"struct"
|
608
613
|
]
|
609
614
|
},
|
610
615
|
{
|
611
|
-
"uuid": "644ffd17-548e-4405-bfd5-a58df74cc19d",
|
612
616
|
"slug": "sublist",
|
617
|
+
"uuid": "644ffd17-548e-4405-bfd5-a58df74cc19d",
|
613
618
|
"core": false,
|
614
619
|
"unlocked_by": null,
|
615
620
|
"difficulty": 4,
|
616
621
|
"topics": [
|
617
622
|
"enum",
|
618
|
-
"
|
623
|
+
"generic_over_type"
|
619
624
|
]
|
620
625
|
},
|
621
626
|
{
|
622
|
-
"uuid": "fa94645d-14e1-422d-a832-d24efbb493d8",
|
623
627
|
"slug": "space-age",
|
628
|
+
"uuid": "fa94645d-14e1-422d-a832-d24efbb493d8",
|
624
629
|
"core": false,
|
625
630
|
"unlocked_by": null,
|
626
631
|
"difficulty": 4,
|
627
632
|
"topics": [
|
628
|
-
"
|
629
|
-
"
|
630
|
-
"
|
633
|
+
"custom_trait",
|
634
|
+
"default_trait_implementation",
|
635
|
+
"from_trait"
|
631
636
|
]
|
632
637
|
},
|
633
638
|
{
|
634
|
-
"uuid": "c32c0124-873d-45f4-9287-402aea29f129",
|
635
639
|
"slug": "luhn-trait",
|
640
|
+
"uuid": "c32c0124-873d-45f4-9287-402aea29f129",
|
636
641
|
"core": false,
|
637
642
|
"unlocked_by": null,
|
638
643
|
"difficulty": 4,
|
639
644
|
"topics": [
|
640
|
-
"
|
641
|
-
"
|
645
|
+
"custom_trait",
|
646
|
+
"higher_order_functions",
|
642
647
|
"iterators",
|
643
|
-
"
|
648
|
+
"str_to_digits"
|
644
649
|
]
|
645
650
|
},
|
646
651
|
{
|
647
|
-
"uuid": "29583cc6-d56d-4bee-847d-93d74e5a30e7",
|
648
652
|
"slug": "macros",
|
653
|
+
"uuid": "29583cc6-d56d-4bee-847d-93d74e5a30e7",
|
649
654
|
"core": false,
|
650
655
|
"unlocked_by": null,
|
651
656
|
"difficulty": 4,
|
652
657
|
"topics": [
|
658
|
+
"hashmap",
|
653
659
|
"macros",
|
654
|
-
"
|
655
|
-
"hashmap"
|
660
|
+
"macros_by_example"
|
656
661
|
]
|
657
662
|
},
|
658
663
|
{
|
659
|
-
"uuid": "94f040d6-3f41-4950-8fe6-acf0945ac83d",
|
660
664
|
"slug": "allergies",
|
665
|
+
"uuid": "94f040d6-3f41-4950-8fe6-acf0945ac83d",
|
661
666
|
"core": false,
|
662
667
|
"unlocked_by": null,
|
663
668
|
"difficulty": 4,
|
664
669
|
"topics": [
|
665
|
-
"
|
670
|
+
"bitwise_probably",
|
666
671
|
"enum",
|
667
|
-
"
|
668
|
-
"
|
669
|
-
"
|
672
|
+
"filter",
|
673
|
+
"struct",
|
674
|
+
"vectors"
|
670
675
|
]
|
671
676
|
},
|
672
677
|
{
|
673
|
-
"uuid": "f1371a9c-c2a4-4fc6-a5fd-3a57c4af16fa",
|
674
678
|
"slug": "variable-length-quantity",
|
679
|
+
"uuid": "f1371a9c-c2a4-4fc6-a5fd-3a57c4af16fa",
|
675
680
|
"core": false,
|
676
681
|
"unlocked_by": null,
|
677
682
|
"difficulty": 4,
|
678
683
|
"topics": [
|
679
|
-
"Encodings",
|
680
|
-
"slices",
|
681
684
|
"bitwise",
|
682
|
-
"
|
685
|
+
"encodings",
|
686
|
+
"result",
|
687
|
+
"slices"
|
683
688
|
]
|
684
689
|
},
|
685
690
|
{
|
686
|
-
"uuid": "6abac1d1-0d85-4b51-8001-97a07990630d",
|
687
691
|
"slug": "phone-number",
|
692
|
+
"uuid": "6abac1d1-0d85-4b51-8001-97a07990630d",
|
688
693
|
"core": false,
|
689
694
|
"unlocked_by": null,
|
690
695
|
"difficulty": 4,
|
691
696
|
"topics": [
|
692
|
-
"option",
|
693
697
|
"format",
|
694
|
-
"unwrap_or",
|
695
698
|
"iters",
|
696
|
-
"match"
|
699
|
+
"match",
|
700
|
+
"option",
|
701
|
+
"unwrap_or"
|
697
702
|
]
|
698
703
|
},
|
699
704
|
{
|
700
|
-
"uuid": "620b55bb-058e-4c6f-a966-ced3b41736db",
|
701
705
|
"slug": "wordy",
|
706
|
+
"uuid": "620b55bb-058e-4c6f-a966-ced3b41736db",
|
702
707
|
"core": false,
|
703
708
|
"unlocked_by": null,
|
704
709
|
"difficulty": 4,
|
705
710
|
"topics": [
|
706
|
-
"
|
707
|
-
"
|
708
|
-
"
|
711
|
+
"operators_optional",
|
712
|
+
"result",
|
713
|
+
"string_parsing"
|
709
714
|
]
|
710
715
|
},
|
711
716
|
{
|
712
|
-
"uuid": "9a2406cc-5037-4761-b820-bb25b1d397c8",
|
713
717
|
"slug": "tournament",
|
718
|
+
"uuid": "9a2406cc-5037-4761-b820-bb25b1d397c8",
|
714
719
|
"core": false,
|
715
720
|
"unlocked_by": null,
|
716
721
|
"difficulty": 4,
|
717
722
|
"topics": [
|
718
723
|
"enum",
|
719
|
-
"sorting",
|
720
724
|
"hashmap",
|
725
|
+
"sorting",
|
721
726
|
"structs"
|
722
727
|
]
|
723
728
|
},
|
724
729
|
{
|
725
|
-
"uuid": "9d652e63-6654-4dec-a99f-97e6bc8cf772",
|
726
730
|
"slug": "custom-set",
|
731
|
+
"uuid": "9d652e63-6654-4dec-a99f-97e6bc8cf772",
|
727
732
|
"core": false,
|
728
733
|
"unlocked_by": null,
|
729
734
|
"difficulty": 4,
|
730
735
|
"topics": [
|
731
|
-
"generic over type",
|
732
|
-
"vector",
|
733
736
|
"equality",
|
734
|
-
"
|
737
|
+
"generic_over_type",
|
738
|
+
"struct",
|
739
|
+
"vector"
|
735
740
|
]
|
736
741
|
},
|
737
742
|
{
|
738
|
-
"uuid": "7450bd80-2388-42ac-a61f-097e82581475",
|
739
743
|
"slug": "alphametics",
|
744
|
+
"uuid": "7450bd80-2388-42ac-a61f-097e82581475",
|
740
745
|
"core": false,
|
741
746
|
"unlocked_by": null,
|
742
747
|
"difficulty": 4,
|
743
748
|
"topics": [
|
744
|
-
"string parsing",
|
745
749
|
"combinations",
|
750
|
+
"external_crates_optional",
|
746
751
|
"mathematics",
|
747
|
-
"
|
752
|
+
"string_parsing"
|
748
753
|
]
|
749
754
|
},
|
750
755
|
{
|
751
|
-
"uuid": "1850fb3f-9dad-449a-90b6-9d90038cf34d",
|
752
756
|
"slug": "two-bucket",
|
757
|
+
"uuid": "1850fb3f-9dad-449a-90b6-9d90038cf34d",
|
753
758
|
"core": false,
|
754
759
|
"unlocked_by": null,
|
755
760
|
"difficulty": 4,
|
@@ -760,232 +765,227 @@
|
|
760
765
|
]
|
761
766
|
},
|
762
767
|
{
|
763
|
-
"uuid": "c21c379b-fb23-449b-809a-3c6ef1c31221",
|
764
768
|
"slug": "pig-latin",
|
769
|
+
"uuid": "c21c379b-fb23-449b-809a-3c6ef1c31221",
|
765
770
|
"core": false,
|
766
771
|
"unlocked_by": null,
|
767
772
|
"difficulty": 4,
|
768
|
-
"topics":
|
773
|
+
"topics": null
|
769
774
|
},
|
770
775
|
{
|
771
|
-
"uuid": "c6878b91-70dd-49a0-b7c1-06364fa3d80b",
|
772
776
|
"slug": "diamond",
|
777
|
+
"uuid": "c6878b91-70dd-49a0-b7c1-06364fa3d80b",
|
773
778
|
"core": false,
|
774
779
|
"unlocked_by": null,
|
775
780
|
"difficulty": 4,
|
776
781
|
"topics": [
|
777
|
-
"
|
782
|
+
"parsing",
|
778
783
|
"str",
|
779
|
-
"
|
784
|
+
"string"
|
780
785
|
]
|
781
786
|
},
|
782
787
|
{
|
783
|
-
"uuid": "8dea3473-36f4-4228-b24b-bee8d9389167",
|
784
788
|
"slug": "spiral-matrix",
|
789
|
+
"uuid": "8dea3473-36f4-4228-b24b-bee8d9389167",
|
785
790
|
"core": false,
|
786
791
|
"unlocked_by": null,
|
787
792
|
"difficulty": 4,
|
788
793
|
"topics": [
|
789
794
|
"matrix",
|
790
|
-
"
|
795
|
+
"nested_structures"
|
791
796
|
]
|
792
797
|
},
|
793
798
|
{
|
794
|
-
"uuid": "8cdc3424-51da-4cae-a065-9982859d5b55",
|
795
799
|
"slug": "palindrome-products",
|
800
|
+
"uuid": "8cdc3424-51da-4cae-a065-9982859d5b55",
|
796
801
|
"core": false,
|
797
802
|
"unlocked_by": null,
|
798
803
|
"difficulty": 4,
|
799
804
|
"topics": [
|
800
|
-
"string comparison",
|
801
805
|
"calculation",
|
806
|
+
"string_comparison",
|
802
807
|
"structs"
|
803
808
|
]
|
804
809
|
},
|
805
810
|
{
|
806
|
-
"uuid": "0a33f3ac-cedd-4a40-a132-9d044b0e9977",
|
807
811
|
"slug": "poker",
|
812
|
+
"uuid": "0a33f3ac-cedd-4a40-a132-9d044b0e9977",
|
808
813
|
"core": false,
|
809
814
|
"unlocked_by": null,
|
810
815
|
"difficulty": 7,
|
811
816
|
"topics": [
|
817
|
+
"enum",
|
812
818
|
"lifetimes",
|
819
|
+
"string_parsing",
|
813
820
|
"struct",
|
814
|
-
"string parsing",
|
815
|
-
"enum",
|
816
821
|
"traits"
|
817
822
|
]
|
818
823
|
},
|
819
824
|
{
|
820
|
-
"uuid": "7cefed7c-37f4-46c5-9a45-68fe4d0fb326",
|
821
825
|
"slug": "decimal",
|
826
|
+
"uuid": "7cefed7c-37f4-46c5-9a45-68fe4d0fb326",
|
822
827
|
"core": false,
|
823
828
|
"unlocked_by": null,
|
824
829
|
"difficulty": 7,
|
825
830
|
"topics": [
|
826
|
-
"struct",
|
827
|
-
"traits",
|
828
|
-
"string parsing",
|
829
831
|
"bigint",
|
830
|
-
"
|
832
|
+
"external_crates_optional",
|
833
|
+
"string_parsing",
|
834
|
+
"struct",
|
835
|
+
"traits"
|
831
836
|
]
|
832
837
|
},
|
833
838
|
{
|
834
|
-
"uuid": "f3172997-91f5-4941-a76e-91c4b8eed401",
|
835
839
|
"slug": "anagram",
|
840
|
+
"uuid": "f3172997-91f5-4941-a76e-91c4b8eed401",
|
836
841
|
"core": false,
|
837
842
|
"unlocked_by": null,
|
838
843
|
"difficulty": 7,
|
839
844
|
"topics": [
|
845
|
+
"iter",
|
840
846
|
"lifetimes",
|
841
|
-
"str vs string",
|
842
847
|
"loops",
|
843
|
-
"
|
848
|
+
"str_vs_string",
|
844
849
|
"vector"
|
845
850
|
]
|
846
851
|
},
|
847
852
|
{
|
848
|
-
"uuid": "4e01efbc-51ce-4d20-b093-b3d44c4be5e8",
|
849
853
|
"slug": "protein-translation",
|
854
|
+
"uuid": "4e01efbc-51ce-4d20-b093-b3d44c4be5e8",
|
850
855
|
"core": false,
|
851
856
|
"unlocked_by": null,
|
852
857
|
"difficulty": 7,
|
853
858
|
"topics": [
|
854
|
-
"
|
855
|
-
"hash map",
|
859
|
+
"hash_map",
|
856
860
|
"lifetimes",
|
857
|
-
"
|
861
|
+
"result",
|
862
|
+
"struct"
|
858
863
|
]
|
859
864
|
},
|
860
865
|
{
|
861
|
-
"uuid": "ec7f66c2-749e-4d00-9c11-fa9d106632e4",
|
862
866
|
"slug": "robot-name",
|
867
|
+
"uuid": "ec7f66c2-749e-4d00-9c11-fa9d106632e4",
|
863
868
|
"core": false,
|
864
869
|
"unlocked_by": null,
|
865
870
|
"difficulty": 7,
|
866
871
|
"topics": [
|
867
|
-
"struct",
|
868
|
-
"slices",
|
869
|
-
"randomness",
|
870
872
|
"lifetimes",
|
871
|
-
"
|
873
|
+
"randomness",
|
874
|
+
"self_mut",
|
875
|
+
"slices",
|
876
|
+
"struct"
|
872
877
|
]
|
873
878
|
},
|
874
879
|
{
|
875
|
-
"uuid": "a78ed17a-b2c0-485c-814b-e13ccd1f4153",
|
876
880
|
"slug": "book-store",
|
881
|
+
"uuid": "a78ed17a-b2c0-485c-814b-e13ccd1f4153",
|
877
882
|
"core": false,
|
878
883
|
"unlocked_by": null,
|
879
884
|
"difficulty": 7,
|
880
885
|
"topics": [
|
881
886
|
"algorithms",
|
882
887
|
"groups",
|
883
|
-
"
|
888
|
+
"set_theory"
|
884
889
|
]
|
885
890
|
},
|
886
891
|
{
|
887
|
-
"uuid": "704aab91-b83a-4e64-8c21-fb0be5076289",
|
888
892
|
"slug": "ocr-numbers",
|
893
|
+
"uuid": "704aab91-b83a-4e64-8c21-fb0be5076289",
|
889
894
|
"core": false,
|
890
895
|
"unlocked_by": null,
|
891
896
|
"difficulty": 10,
|
892
897
|
"topics": [
|
893
|
-
"
|
894
|
-
"
|
898
|
+
"chunks",
|
899
|
+
"lines",
|
895
900
|
"slices"
|
896
901
|
]
|
897
902
|
},
|
898
903
|
{
|
899
|
-
"uuid": "e0037ac4-ae5f-4622-b3ad-915648263495",
|
900
904
|
"slug": "minesweeper",
|
905
|
+
"uuid": "e0037ac4-ae5f-4622-b3ad-915648263495",
|
901
906
|
"core": false,
|
902
907
|
"unlocked_by": null,
|
903
908
|
"difficulty": 10,
|
904
909
|
"topics": [
|
905
|
-
"
|
910
|
+
"board_state"
|
906
911
|
]
|
907
912
|
},
|
908
913
|
{
|
909
|
-
"uuid": "5e6f6986-5011-427b-a992-d6d0c81f5101",
|
910
914
|
"slug": "dominoes",
|
915
|
+
"uuid": "5e6f6986-5011-427b-a992-d6d0c81f5101",
|
911
916
|
"core": false,
|
912
917
|
"unlocked_by": null,
|
913
918
|
"difficulty": 10,
|
914
919
|
"topics": [
|
915
|
-
"
|
920
|
+
"graph_theory",
|
916
921
|
"searching"
|
917
922
|
]
|
918
923
|
},
|
919
924
|
{
|
920
|
-
"uuid": "e114b19f-9a9a-402d-a5cb-1cad8de5088e",
|
921
925
|
"slug": "parallel-letter-frequency",
|
926
|
+
"uuid": "e114b19f-9a9a-402d-a5cb-1cad8de5088e",
|
922
927
|
"core": false,
|
923
928
|
"unlocked_by": null,
|
924
929
|
"difficulty": 10,
|
925
930
|
"topics": [
|
926
|
-
"
|
931
|
+
"multi_threading"
|
927
932
|
]
|
928
933
|
},
|
929
934
|
{
|
930
|
-
"uuid": "cc4ccd99-1c97-4ee7-890c-d629b4e1e46d",
|
931
935
|
"slug": "rectangles",
|
936
|
+
"uuid": "cc4ccd99-1c97-4ee7-890c-d629b4e1e46d",
|
932
937
|
"core": false,
|
933
938
|
"unlocked_by": null,
|
934
939
|
"difficulty": 10,
|
935
940
|
"topics": [
|
936
|
-
"
|
941
|
+
"algorithm",
|
942
|
+
"enum",
|
937
943
|
"structs",
|
938
|
-
"traits"
|
939
|
-
"algorithm"
|
944
|
+
"traits"
|
940
945
|
]
|
941
946
|
},
|
942
947
|
{
|
943
|
-
"uuid": "55976c49-1be5-4170-8aa3-056c2223abbb",
|
944
948
|
"slug": "forth",
|
949
|
+
"uuid": "55976c49-1be5-4170-8aa3-056c2223abbb",
|
945
950
|
"core": false,
|
946
951
|
"unlocked_by": null,
|
947
952
|
"difficulty": 10,
|
948
953
|
"topics": [
|
949
|
-
"
|
954
|
+
"parser_reimplementation"
|
950
955
|
]
|
951
956
|
},
|
952
957
|
{
|
953
|
-
"uuid": "6ff1a539-251b-49d4-81b5-a6b1e9ba66a4",
|
954
958
|
"slug": "circular-buffer",
|
959
|
+
"uuid": "6ff1a539-251b-49d4-81b5-a6b1e9ba66a4",
|
955
960
|
"core": false,
|
956
961
|
"unlocked_by": null,
|
957
962
|
"difficulty": 10,
|
958
963
|
"topics": [
|
959
|
-
"
|
960
|
-
"
|
964
|
+
"buffer_reimplementation",
|
965
|
+
"generics"
|
961
966
|
]
|
962
967
|
},
|
963
968
|
{
|
964
|
-
"uuid": "8708ccc7-711a-4862-b5a4-ff59fde2241c",
|
965
969
|
"slug": "react",
|
970
|
+
"uuid": "8708ccc7-711a-4862-b5a4-ff59fde2241c",
|
966
971
|
"core": false,
|
967
972
|
"unlocked_by": null,
|
968
973
|
"difficulty": 10,
|
969
974
|
"topics": [
|
970
|
-
"
|
975
|
+
"closures",
|
971
976
|
"generics",
|
972
|
-
"
|
977
|
+
"lifetimes"
|
973
978
|
]
|
974
979
|
},
|
975
980
|
{
|
976
|
-
"uuid": "8dae8f4d-368d-477d-907e-bf746921bfbf",
|
977
981
|
"slug": "nucleotide-codons",
|
982
|
+
"uuid": "8dae8f4d-368d-477d-907e-bf746921bfbf",
|
978
983
|
"deprecated": true
|
979
984
|
},
|
980
985
|
{
|
981
|
-
"uuid": "496fd79f-1678-4aa2-8110-c32c6aaf545e",
|
982
986
|
"slug": "hexadecimal",
|
987
|
+
"uuid": "496fd79f-1678-4aa2-8110-c32c6aaf545e",
|
983
988
|
"deprecated": true
|
984
989
|
}
|
985
|
-
],
|
986
|
-
"foregone": [
|
987
|
-
"binary",
|
988
|
-
"octal",
|
989
|
-
"trinary"
|
990
990
|
]
|
991
|
-
}
|
991
|
+
}
|