trackler 2.1.0.32 → 2.1.0.33

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/common/CONTRIBUTING.md +1 -24
  3. data/fixtures/tracks/animal/config.json +6 -2
  4. data/fixtures/tracks/fake/config.json +0 -5
  5. data/fixtures/tracks/fruit/config.json +16 -4
  6. data/fixtures/tracks/jewels/config.json +6 -2
  7. data/fixtures/tracks/shoes/config.json +6 -2
  8. data/fixtures/tracks/snowflake/config.json +21 -5
  9. data/lib/trackler/track.rb +0 -11
  10. data/lib/trackler/version.rb +1 -1
  11. data/tracks/c/config.json +281 -245
  12. data/tracks/c/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  13. data/tracks/ceylon/config.json +0 -5
  14. data/tracks/ceylon/{exercises/TRACK_HINTS.md → docs/EXERCISE_README_INSERT.md} +0 -0
  15. data/tracks/cpp/config.json +9 -13
  16. data/tracks/cpp/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  17. data/tracks/cpp/exercises/grade-school/grade_school_test.cpp +1 -0
  18. data/tracks/cpp/exercises/nucleotide-count/nucleotide_count_test.cpp +1 -0
  19. data/tracks/crystal/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  20. data/tracks/csharp/config.json +4 -9
  21. data/tracks/csharp/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  22. data/tracks/delphi/config.json +31 -36
  23. data/tracks/delphi/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  24. data/tracks/ecmascript/config.json +65 -7
  25. data/tracks/ecmascript/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  26. data/tracks/elixir/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  27. data/tracks/elm/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  28. data/tracks/erlang/_test/bootstrap.sh +3 -5
  29. data/tracks/erlang/config.json +108 -40
  30. data/tracks/erlang/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  31. data/tracks/factor/config.json +6 -14
  32. data/tracks/factor/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  33. data/tracks/fsharp/config.json +1 -1
  34. data/tracks/fsharp/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  35. data/tracks/go/{exercises/TRACK_HINTS.md → docs/EXERCISE_README_INSERT.md} +0 -0
  36. data/tracks/haskell/config.json +0 -4
  37. data/tracks/haskell/{exercises/TRACK_HINTS.md → docs/EXERCISE_README_INSERT.md} +0 -0
  38. data/tracks/idris/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  39. data/tracks/java/{TRACK_HINTS.md → docs/EXERCISE_README_INSERT.md} +0 -0
  40. data/tracks/java/exercises/isogram/HINT.md +10 -0
  41. data/tracks/javascript/config.json +57 -6
  42. data/tracks/javascript/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  43. data/tracks/julia/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  44. data/tracks/kotlin/{TRACK_HINTS.md → docs/EXERCISE_README_INSERT.md} +0 -0
  45. data/tracks/lfe/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  46. data/tracks/lisp/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  47. data/tracks/lua/config.json +684 -611
  48. data/tracks/lua/{exercises/TRACK_HINTS.md → docs/EXERCISE_README_INSERT.md} +0 -0
  49. data/tracks/objective-c/config.json +235 -241
  50. data/tracks/objective-c/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  51. data/tracks/ocaml/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  52. data/tracks/perl6/config.json +70 -32
  53. data/tracks/php/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  54. data/tracks/r/config.json +72 -24
  55. data/tracks/r/{exercises/TRACK_HINTS.md → docs/EXERCISE_README_INSERT.md} +0 -0
  56. data/tracks/racket/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  57. data/tracks/ruby/exercises/bob/.meta/.version +1 -0
  58. data/tracks/ruby/exercises/bob/.meta/generator/bob_case.rb +9 -0
  59. data/tracks/ruby/exercises/bob/.meta/solutions/bob.rb +4 -0
  60. data/tracks/ruby/exercises/bob/bob_test.rb +95 -50
  61. data/tracks/rust/config.json +0 -5
  62. data/tracks/rust/{exercises/TRACK_HINTS.md → docs/EXERCISE_README_INSERT.md} +0 -0
  63. data/tracks/scala/config.json +758 -758
  64. data/tracks/scala/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  65. data/tracks/scheme/docs/EXERCISE_README_INSERT.md +0 -0
  66. data/tracks/swift/config.json +468 -478
  67. data/tracks/swift/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  68. data/tracks/typescript/{SETUP.md → docs/EXERCISE_README_INSERT.md} +0 -0
  69. data/tracks/vbnet/config.json +21 -7
  70. metadata +37 -33
@@ -11,8 +11,6 @@ if [[ ! -f ~/bin/rebar3 ]]; then
11
11
  chmod a+x ~/bin/rebar3
12
12
  fi
13
13
 
14
- if [[ ! -f ~/bin/configlet ]]; then
15
- ./bin/fetch-configlet
16
- cp ./bin/configlet ~/bin/configlet
17
- fi
18
-
14
+ # fetch configlet and move it into $PATH
15
+ ./bin/fetch-configlet
16
+ cp ./bin/configlet ~/bin/configlet
@@ -6,182 +6,254 @@
6
6
  "exercises": [
7
7
  {
8
8
  "slug": "hello-world",
9
- "topics": [],
9
+ "topics": [
10
+
11
+ ],
10
12
  "difficulty": 1
11
13
  },
12
14
  {
13
15
  "slug": "leap",
14
- "topics": [],
16
+ "topics": [
17
+
18
+ ],
15
19
  "difficulty": 1
16
20
  },
17
21
  {
18
22
  "slug": "accumulate",
19
- "topics": [],
23
+ "topics": [
24
+
25
+ ],
20
26
  "difficulty": 1
21
27
  },
22
28
  {
23
29
  "slug": "rna-transcription",
24
- "topics": [],
30
+ "topics": [
31
+
32
+ ],
25
33
  "difficulty": 2
26
34
  },
27
35
  {
28
36
  "slug": "bob",
29
- "topics": [],
37
+ "topics": [
38
+
39
+ ],
30
40
  "difficulty": 2
31
41
  },
32
42
  {
33
43
  "slug": "strain",
34
- "topics": [],
44
+ "topics": [
45
+
46
+ ],
35
47
  "difficulty": 2
36
48
  },
37
49
  {
38
50
  "slug": "hamming",
39
- "topics": [],
51
+ "topics": [
52
+
53
+ ],
40
54
  "difficulty": 2
41
55
  },
42
56
  {
43
57
  "slug": "space-age",
44
- "topics": [],
58
+ "topics": [
59
+
60
+ ],
45
61
  "difficulty": 2
46
62
  },
47
63
  {
48
64
  "slug": "grains",
49
- "topics": [],
65
+ "topics": [
66
+
67
+ ],
50
68
  "difficulty": 2
51
69
  },
52
70
  {
53
71
  "slug": "nucleotide-count",
54
- "topics": [],
72
+ "topics": [
73
+
74
+ ],
55
75
  "difficulty": 2
56
76
  },
57
77
  {
58
78
  "slug": "difference-of-squares",
59
- "topics": [],
79
+ "topics": [
80
+
81
+ ],
60
82
  "difficulty": 2
61
83
  },
62
84
  {
63
85
  "slug": "triangle",
64
- "topics": [],
86
+ "topics": [
87
+
88
+ ],
65
89
  "difficulty": 2
66
90
  },
67
91
  {
68
92
  "slug": "sum-of-multiples",
69
- "topics": [],
93
+ "topics": [
94
+
95
+ ],
70
96
  "difficulty": 3
71
97
  },
72
98
  {
73
99
  "slug": "anagram",
74
- "topics": [],
100
+ "topics": [
101
+
102
+ ],
75
103
  "difficulty": 3
76
104
  },
77
105
  {
78
106
  "slug": "atbash-cipher",
79
- "topics": [],
107
+ "topics": [
108
+
109
+ ],
80
110
  "difficulty": 3
81
111
  },
82
112
  {
83
113
  "slug": "phone-number",
84
- "topics": [],
114
+ "topics": [
115
+
116
+ ],
85
117
  "difficulty": 3
86
118
  },
87
119
  {
88
120
  "slug": "gigasecond",
89
- "topics": [],
121
+ "topics": [
122
+
123
+ ],
90
124
  "difficulty": 3
91
125
  },
92
126
  {
93
127
  "slug": "scrabble-score",
94
- "topics": [],
128
+ "topics": [
129
+
130
+ ],
95
131
  "difficulty": 3
96
132
  },
97
133
  {
98
134
  "slug": "robot-simulator",
99
- "topics": [],
135
+ "topics": [
136
+
137
+ ],
100
138
  "difficulty": 4
101
139
  },
102
140
  {
103
141
  "slug": "grade-school",
104
- "topics": [],
142
+ "topics": [
143
+
144
+ ],
105
145
  "difficulty": 4
106
146
  },
107
147
  {
108
148
  "slug": "word-count",
109
- "topics": [],
149
+ "topics": [
150
+
151
+ ],
110
152
  "difficulty": 4
111
153
  },
112
154
  {
113
155
  "slug": "clock",
114
- "topics": [],
156
+ "topics": [
157
+
158
+ ],
115
159
  "difficulty": 4
116
160
  },
117
161
  {
118
162
  "slug": "allergies",
119
- "topics": [],
163
+ "topics": [
164
+
165
+ ],
120
166
  "difficulty": 4
121
167
  },
122
168
  {
123
169
  "slug": "all-your-base",
124
- "topics": [],
170
+ "topics": [
171
+
172
+ ],
125
173
  "difficulty": 4
126
174
  },
127
175
  {
128
176
  "slug": "series",
129
- "topics": [],
177
+ "topics": [
178
+
179
+ ],
130
180
  "difficulty": 4
131
181
  },
132
182
  {
133
183
  "slug": "parallel-letter-frequency",
134
- "topics": [],
184
+ "topics": [
185
+
186
+ ],
135
187
  "difficulty": 4
136
188
  },
137
189
  {
138
190
  "slug": "roman-numerals",
139
- "topics": [],
191
+ "topics": [
192
+
193
+ ],
140
194
  "difficulty": 4
141
195
  },
142
196
  {
143
197
  "slug": "largest-series-product",
144
- "topics": [],
198
+ "topics": [
199
+
200
+ ],
145
201
  "difficulty": 5
146
202
  },
147
203
  {
148
204
  "slug": "rotational-cipher",
149
- "topics": [],
205
+ "topics": [
206
+
207
+ ],
150
208
  "difficulty": 5
151
209
  },
152
210
  {
153
211
  "slug": "etl",
154
- "topics": [],
212
+ "topics": [
213
+
214
+ ],
155
215
  "difficulty": 6
156
216
  },
157
217
  {
158
218
  "slug": "bank-account",
159
- "topics": [],
219
+ "topics": [
220
+
221
+ ],
160
222
  "difficulty": 6
161
223
  },
162
224
  {
163
225
  "slug": "luhn",
164
- "topics": [],
226
+ "topics": [
227
+
228
+ ],
165
229
  "difficulty": 6
166
230
  },
167
231
  {
168
232
  "slug": "meetup",
169
- "topics": [],
233
+ "topics": [
234
+
235
+ ],
170
236
  "difficulty": 6
171
237
  },
172
238
  {
173
239
  "slug": "circular-buffer",
174
- "topics": [],
240
+ "topics": [
241
+
242
+ ],
175
243
  "difficulty": 7
176
244
  },
177
245
  {
178
246
  "slug": "beer-song",
179
- "topics": [],
247
+ "topics": [
248
+
249
+ ],
180
250
  "difficulty": 7
181
251
  },
182
252
  {
183
253
  "slug": "zipper",
184
- "topics": [],
254
+ "topics": [
255
+
256
+ ],
185
257
  "difficulty": 8
186
258
  }
187
259
  ],
@@ -192,10 +264,6 @@
192
264
  "octal",
193
265
  "hexadecimal"
194
266
  ],
195
- "ignored": [
196
- "docs",
197
- "_test"
198
- ],
199
267
  "foregone": [
200
268
  "binary-search",
201
269
  "lens-person",
@@ -4,14 +4,13 @@
4
4
  "repository": "https://github.com/exercism/xfactor",
5
5
  "active": false,
6
6
  "test_pattern": "TODO",
7
-
8
7
  "exercises": [
9
8
  {
10
9
  "slug": "hello-world",
11
10
  "difficulty": 1,
12
11
  "topics": [
13
- "word definition",
14
- "stack effect"
12
+ "word definition",
13
+ "stack effect"
15
14
  ]
16
15
  },
17
16
  {
@@ -28,24 +27,17 @@
28
27
  "slug": "two-fer",
29
28
  "difficulty": 2,
30
29
  "topics": [
31
- "word definition",
32
- "stack effect",
33
- "text formatting",
34
- "quotations"
30
+ "word definition",
31
+ "stack effect",
32
+ "text formatting",
33
+ "quotations"
35
34
  ]
36
35
  }
37
36
  ],
38
-
39
37
  "deprecated": [
40
- ],
41
38
 
42
- "ignored": [
43
- "bin",
44
- "docs"
45
39
  ],
46
-
47
40
  "foregone": [
48
41
 
49
42
  ]
50
-
51
43
  }
@@ -845,7 +845,7 @@
845
845
  ]
846
846
  }
847
847
  ],
848
- "deprecated": [
848
+ "deprecated": [
849
849
  "binary",
850
850
  "octal",
851
851
  "hexadecimal",
@@ -529,10 +529,6 @@
529
529
  "octal",
530
530
  "trinary"
531
531
  ],
532
- "ignored": [
533
- "docs",
534
- "img"
535
- ],
536
532
  "foregone": [
537
533
 
538
534
  ]
@@ -0,0 +1,10 @@
1
+ If you find that `testWorksWithGermanLetters` fails even though you think you've implemented it correctly,
2
+ this could be because of the [JVM encoding](https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_61/rzaha/international.htm).
3
+ Try setting the `JAVA_TOOL_OPTIONS` environment variable to `-Dfile.encoding=UTF8` to fix this.
4
+ - To set an environment variable on Windows:
5
+ 1. Go to Computer -> Properties -> Advanced System Settings
6
+ 2. Add a new environment variable
7
+
8
+ - [To set an environment variable on a mac](http://blog.lidalia.org.uk/2011/04/setting-default-java-file-encoding-to.html)
9
+
10
+ - [To set an environment variable on linux](https://unix.stackexchange.com/questions/151733/where-can-i-set-global-java-options)
@@ -119,48 +119,56 @@
119
119
  "slug": "grade-school",
120
120
  "difficulty": 1,
121
121
  "topics": [
122
+
122
123
  ]
123
124
  },
124
125
  {
125
126
  "slug": "robot-name",
126
127
  "difficulty": 1,
127
128
  "topics": [
129
+
128
130
  ]
129
131
  },
130
132
  {
131
133
  "slug": "etl",
132
134
  "difficulty": 1,
133
135
  "topics": [
136
+
134
137
  ]
135
138
  },
136
139
  {
137
140
  "slug": "space-age",
138
141
  "difficulty": 1,
139
142
  "topics": [
143
+
140
144
  ]
141
145
  },
142
146
  {
143
147
  "slug": "grains",
144
148
  "difficulty": 1,
145
149
  "topics": [
150
+
146
151
  ]
147
152
  },
148
153
  {
149
154
  "slug": "triangle",
150
155
  "difficulty": 1,
151
156
  "topics": [
157
+
152
158
  ]
153
159
  },
154
160
  {
155
161
  "slug": "clock",
156
162
  "difficulty": 1,
157
163
  "topics": [
164
+
158
165
  ]
159
166
  },
160
- {
167
+ {
161
168
  "slug": "perfect-numbers",
162
169
  "difficulty": 1,
163
170
  "topics": [
171
+
164
172
  ]
165
173
  },
166
174
  {
@@ -178,132 +186,154 @@
178
186
  "slug": "acronym",
179
187
  "difficulty": 1,
180
188
  "topics": [
189
+
181
190
  ]
182
191
  },
183
192
  {
184
193
  "slug": "scrabble-score",
185
194
  "difficulty": 1,
186
195
  "topics": [
196
+
187
197
  ]
188
198
  },
189
199
  {
190
200
  "slug": "roman-numerals",
191
201
  "difficulty": 1,
192
202
  "topics": [
203
+
193
204
  ]
194
205
  },
195
206
  {
196
207
  "slug": "circular-buffer",
197
208
  "difficulty": 1,
198
209
  "topics": [
210
+
199
211
  ]
200
212
  },
201
213
  {
202
214
  "slug": "binary",
203
215
  "difficulty": 1,
204
216
  "topics": [
217
+
205
218
  ]
206
219
  },
207
220
  {
208
221
  "slug": "prime-factors",
209
222
  "difficulty": 1,
210
223
  "topics": [
224
+
211
225
  ]
212
226
  },
213
227
  {
214
228
  "slug": "raindrops",
215
229
  "difficulty": 1,
216
230
  "topics": [
231
+
217
232
  ]
218
233
  },
219
234
  {
220
235
  "slug": "allergies",
221
236
  "difficulty": 1,
222
237
  "topics": [
238
+
223
239
  ]
224
240
  },
225
241
  {
226
242
  "slug": "strain",
227
243
  "difficulty": 1,
228
244
  "topics": [
245
+
229
246
  ]
230
247
  },
231
248
  {
232
249
  "slug": "atbash-cipher",
233
250
  "difficulty": 1,
234
251
  "topics": [
252
+
235
253
  ]
236
254
  },
237
255
  {
238
256
  "slug": "accumulate",
239
257
  "difficulty": 1,
240
258
  "topics": [
259
+
241
260
  ]
242
261
  },
243
262
  {
244
263
  "slug": "crypto-square",
245
264
  "difficulty": 1,
246
265
  "topics": [
266
+
247
267
  ]
248
268
  },
249
269
  {
250
270
  "slug": "trinary",
251
271
  "difficulty": 1,
252
272
  "topics": [
273
+
253
274
  ]
254
275
  },
255
276
  {
256
277
  "slug": "sieve",
257
278
  "difficulty": 1,
258
279
  "topics": [
280
+
259
281
  ]
260
282
  },
261
283
  {
262
284
  "slug": "simple-cipher",
263
285
  "difficulty": 1,
264
286
  "topics": [
287
+
265
288
  ]
266
289
  },
267
290
  {
268
291
  "slug": "octal",
269
292
  "difficulty": 1,
270
293
  "topics": [
294
+
271
295
  ]
272
296
  },
273
297
  {
274
298
  "slug": "luhn",
275
299
  "difficulty": 1,
276
300
  "topics": [
301
+
277
302
  ]
278
303
  },
279
304
  {
280
305
  "slug": "pig-latin",
281
306
  "difficulty": 1,
282
307
  "topics": [
308
+
283
309
  ]
284
310
  },
285
311
  {
286
312
  "slug": "pythagorean-triplet",
287
313
  "difficulty": 1,
288
314
  "topics": [
315
+
289
316
  ]
290
317
  },
291
318
  {
292
319
  "slug": "series",
293
320
  "difficulty": 1,
294
321
  "topics": [
322
+
295
323
  ]
296
324
  },
297
325
  {
298
326
  "slug": "difference-of-squares",
299
327
  "difficulty": 1,
300
328
  "topics": [
329
+
301
330
  ]
302
331
  },
303
332
  {
304
333
  "slug": "secret-handshake",
305
334
  "difficulty": 1,
306
335
  "topics": [
336
+
307
337
  ]
308
338
  },
309
339
  {
@@ -318,156 +348,182 @@
318
348
  "slug": "linked-list",
319
349
  "difficulty": 1,
320
350
  "topics": [
351
+
321
352
  ]
322
353
  },
323
354
  {
324
355
  "slug": "wordy",
325
356
  "difficulty": 1,
326
357
  "topics": [
358
+
327
359
  ]
328
360
  },
329
361
  {
330
362
  "slug": "flatten-array",
331
363
  "difficulty": 1,
332
364
  "topics": [
365
+
333
366
  ]
334
367
  },
335
368
  {
336
369
  "slug": "hexadecimal",
337
370
  "difficulty": 1,
338
371
  "topics": [
372
+
339
373
  ]
340
374
  },
341
375
  {
342
376
  "slug": "largest-series-product",
343
377
  "difficulty": 1,
344
378
  "topics": [
379
+
345
380
  ]
346
381
  },
347
382
  {
348
383
  "slug": "kindergarten-garden",
349
384
  "difficulty": 1,
350
385
  "topics": [
386
+
351
387
  ]
352
388
  },
353
389
  {
354
390
  "slug": "binary-search",
355
391
  "difficulty": 1,
356
392
  "topics": [
393
+
357
394
  ]
358
395
  },
359
396
  {
360
397
  "slug": "binary-search-tree",
361
398
  "difficulty": 1,
362
399
  "topics": [
400
+
363
401
  ]
364
402
  },
365
403
  {
366
404
  "slug": "matrix",
367
405
  "difficulty": 1,
368
406
  "topics": [
407
+
369
408
  ]
370
409
  },
371
410
  {
372
411
  "slug": "robot-simulator",
373
412
  "difficulty": 1,
374
413
  "topics": [
414
+
375
415
  ]
376
416
  },
377
417
  {
378
418
  "slug": "nth-prime",
379
419
  "difficulty": 1,
380
420
  "topics": [
421
+
381
422
  ]
382
423
  },
383
424
  {
384
425
  "slug": "palindrome-products",
385
426
  "difficulty": 1,
386
427
  "topics": [
428
+
387
429
  ]
388
430
  },
389
431
  {
390
432
  "slug": "pascals-triangle",
391
433
  "difficulty": 1,
392
434
  "topics": [
435
+
393
436
  ]
394
437
  },
395
438
  {
396
439
  "slug": "say",
397
440
  "difficulty": 1,
398
441
  "topics": [
442
+
399
443
  ]
400
444
  },
401
445
  {
402
446
  "slug": "custom-set",
403
447
  "difficulty": 1,
404
448
  "topics": [
449
+
405
450
  ]
406
451
  },
407
452
  {
408
453
  "slug": "sum-of-multiples",
409
454
  "difficulty": 1,
410
455
  "topics": [
456
+
411
457
  ]
412
458
  },
413
459
  {
414
460
  "slug": "queen-attack",
415
461
  "difficulty": 1,
416
462
  "topics": [
463
+
417
464
  ]
418
465
  },
419
466
  {
420
467
  "slug": "saddle-points",
421
468
  "difficulty": 1,
422
469
  "topics": [
470
+
423
471
  ]
424
472
  },
425
473
  {
426
474
  "slug": "ocr-numbers",
427
475
  "difficulty": 1,
428
476
  "topics": [
477
+
429
478
  ]
430
479
  },
431
480
  {
432
481
  "slug": "meetup",
433
482
  "difficulty": 1,
434
483
  "topics": [
484
+
435
485
  ]
436
486
  },
437
487
  {
438
488
  "slug": "bracket-push",
439
489
  "difficulty": 1,
440
490
  "topics": [
491
+
441
492
  ]
442
493
  },
443
494
  {
444
495
  "slug": "two-bucket",
445
496
  "difficulty": 1,
446
497
  "topics": [
498
+
447
499
  ]
448
500
  },
449
501
  {
450
502
  "slug": "bowling",
451
503
  "difficulty": 1,
452
504
  "topics": [
505
+
453
506
  ]
454
507
  },
455
508
  {
456
509
  "slug": "diamond",
457
510
  "difficulty": 1,
458
511
  "topics": [
512
+
459
513
  ]
460
514
  },
461
515
  {
462
516
  "slug": "all-your-base",
463
517
  "difficulty": 1,
464
518
  "topics": [
519
+
465
520
  ]
466
521
  },
467
522
  {
468
523
  "slug": "run-length-encoding",
469
524
  "difficulty": 1,
470
525
  "topics": [
526
+
471
527
  ]
472
528
  },
473
529
  {
@@ -492,11 +548,6 @@
492
548
  "nucleotide-count",
493
549
  "point-mutations"
494
550
  ],
495
- "ignored": [
496
- "docs",
497
- "node_modules",
498
- "img"
499
- ],
500
551
  "foregone": [
501
552
 
502
553
  ]