trackler 2.2.1.170 → 2.2.1.171

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +4 -4
  2. data/lib/trackler/version.rb +1 -1
  3. data/problem-specifications/exercises/simple-cipher/canonical-data.json +5 -4
  4. data/tracks/cfml/config.json +1 -0
  5. data/tracks/coffeescript/config.json +43 -87
  6. data/tracks/coffeescript/config/maintainers.json +8 -2
  7. data/tracks/common-lisp/config.json +1 -0
  8. data/tracks/coq/config.json +7 -15
  9. data/tracks/coq/config/maintainers.json +5 -5
  10. data/tracks/crystal/config.json +51 -99
  11. data/tracks/crystal/config/maintainers.json +8 -8
  12. data/tracks/d/config.json +58 -60
  13. data/tracks/d/config/maintainers.json +8 -8
  14. data/tracks/delphi/config.json +12 -0
  15. data/tracks/delphi/exercises/isbn-verifier/uTestISBNVerifier.pas +30 -3
  16. data/tracks/delphi/exercises/word-count/README.md +39 -0
  17. data/tracks/delphi/exercises/word-count/WordCount.dpr +60 -0
  18. data/tracks/delphi/exercises/word-count/uWordCountExample.pas +67 -0
  19. data/tracks/delphi/exercises/word-count/uWordCountTests.pas +247 -0
  20. data/tracks/elisp/config.json +1 -0
  21. data/tracks/erlang/config.json +1 -1
  22. data/tracks/fortran/config.json +16 -32
  23. data/tracks/fortran/config/maintainers.json +5 -5
  24. data/tracks/go/config.json +1 -0
  25. data/tracks/go/exercises/bank-account/bank_account_test.go +3 -3
  26. data/tracks/go/exercises/parallel-letter-frequency/parallel_letter_frequency_test.go +17 -1
  27. data/tracks/groovy/config.json +89 -89
  28. data/tracks/groovy/config/maintainers.json +6 -6
  29. data/tracks/haxe/config.json +17 -17
  30. data/tracks/haxe/config/maintainers.json +1 -1
  31. data/tracks/java/scripts/insert-ignores.sh +33 -11
  32. data/tracks/julia/config.json +1 -0
  33. data/tracks/lua/config.json +1 -0
  34. data/tracks/lua/docs/ABOUT.md +7 -3
  35. data/tracks/nim/config.json +14 -2
  36. data/tracks/nim/exercises/sum-of-multiples/README.md +15 -0
  37. data/tracks/nim/exercises/sum-of-multiples/example.nim +6 -0
  38. data/tracks/nim/exercises/sum-of-multiples/sum_of_multiples_test.nim +44 -0
  39. data/tracks/objective-c/config.json +1 -0
  40. data/tracks/ocaml/config.json +1 -0
  41. data/tracks/perl5/config.json +138 -258
  42. data/tracks/perl5/config/maintainers.json +8 -8
  43. data/tracks/pharo/.travis.yml +1 -1
  44. data/tracks/pharo/config.json +3 -4
  45. data/tracks/pharo/config/maintainers.json +1 -1
  46. data/tracks/pharo/exercises/.keep +0 -0
  47. data/tracks/php/config.json +191 -211
  48. data/tracks/php/config/maintainers.json +11 -11
  49. data/tracks/plsql/config.json +49 -49
  50. data/tracks/plsql/config/maintainers.json +5 -5
  51. data/tracks/pony/config.json +27 -26
  52. data/tracks/pony/config/maintainers.json +5 -5
  53. data/tracks/prolog/config.json +1 -0
  54. data/tracks/purescript/config.json +49 -51
  55. data/tracks/purescript/config/maintainers.json +11 -11
  56. data/tracks/racket/config.json +1 -0
  57. data/tracks/scala/config.json +1 -0
  58. data/tracks/scheme/config.json +1 -0
  59. data/tracks/swift/config.json +1 -0
  60. data/tracks/typescript/config.json +1 -0
  61. data/tracks/vbnet/config.json +16 -32
  62. data/tracks/vbnet/config/maintainers.json +5 -5
  63. data/tracks/vimscript/config.json +1 -0
  64. metadata +10 -2
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "docs_url": "https://github.com/exercism/docs/blob/master/maintaining-a-track/maintainer-configuration.md",
3
3
  "maintainers": []
4
- }
4
+ }
@@ -1,15 +1,37 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
+ # This script will add @Ignore for all the testcases except first testcase. It will also add import org.junit.Ignore;, if it will be missing
4
+ # post adding @Ignore.
5
+
6
+
3
7
  for file in `find . -name "*Test.java"`; do
4
- tempfile="/tmp/insert-ignores.tmp"
5
-
6
- echo -e "\n\n\n*** $file ******************************"
7
- cat $file | \
8
- sed 's/import org.junit.Test;/import org.junit.Test;\
9
- import org.junit.Ignore;/' | \
10
- sed 's/@Test/@Ignore\
11
- @Test/' | \
12
- sed '1,/@Ignore/s/.*@Ignore//' > "$tempfile" \
13
- && mv "$tempfile" "$file"
14
- done
15
8
 
9
+ tempfile="/tmp/insert-ignores.tmp"
10
+
11
+ echo -e "\n\n\n*** $file ******************************"
12
+
13
+
14
+ ## This AWK code will check for missing Ignore with the @Test and add it
15
+
16
+ awk 'BEGIN{igonreset=0;firsttest=1}{if($0~/.*@Ignore.*/){igonreset=1}if($0 ~ /^.*@Test/){if(igonreset!=1 && firsttest==0){print " @Ignore(\"Remove to run test\")";}firsttest=0;igonreset=0}print $0}' $file > $tempfile
17
+ mv "$tempfile" "$file"
18
+
19
+ ## Checking if @Ignore is added. If @Ignore is added then only import org.junit.Ignore; will be added
20
+ ignoreAdded=`grep -q '@Ignore' $file ; echo $?` > /dev/null
21
+
22
+ if [ $ignoreAdded -eq 0 ]
23
+ then
24
+ #ignoreFound variable will check if already Ignore is imported or not.
25
+ ignoreFound=`grep -q 'import org.junit.Ignore;' $file ; echo $?` > /dev/null
26
+
27
+ #if ignore is not imported then add line for import
28
+ if [ $ignoreFound -ne 0 ]
29
+ then
30
+ cat $file | sed 's/import org.junit.Test;/import org.junit.Test;\
31
+ import org.junit.Ignore;/' > $tempfile
32
+ mv "$tempfile" "$file"
33
+ pwd
34
+ fi
35
+ fi
36
+
37
+ done
@@ -7,6 +7,7 @@
7
7
  "slug": "hello-world",
8
8
  "uuid": "a668410d-41aa-4710-a68f-54521da6486d",
9
9
  "core": true,
10
+ "auto_approve": true,
10
11
  "unlocked_by": null,
11
12
  "difficulty": 1,
12
13
  "topics": [
@@ -8,6 +8,7 @@
8
8
  "slug": "hello-world",
9
9
  "uuid": "e2909553-add0-46d9-a95d-d687d12ccd32",
10
10
  "core": true,
11
+ "auto_approve": true,
11
12
  "unlocked_by": null,
12
13
  "difficulty": 1,
13
14
  "topics": [
@@ -1,9 +1,13 @@
1
- Lua (pronounced __LOO-ah__, which means *Moon* in Portuguese) is a simple yet powerful, lightweight, fast, portable and embeddable scripting language. It is designed, implemented, and maintained by a [team](https://www.lua.org/authors.html) at [PUC-Rio](https://www.puc-rio.br/) and is housed at [LabLua](http://www.lua.inf.puc-rio.br/).
1
+ Lua (pronounced __LOO-ah__, which means *Moon* in Portuguese) is a simple yet powerful, lightweight, fast, portable and embeddable scripting language.
2
+ It is designed, implemented, and maintained by a [team](https://www.lua.org/authors.html) at [PUC-Rio](https://www.puc-rio.br/) and is housed at [LabLua](http://www.lua.inf.puc-rio.br/).
2
3
 
3
- Lua supports procedural, object-oriented, functional, data-driven programming and data description. It combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode with a register-based virtual machine and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting and rapid prototyping.
4
+ Lua supports procedural, object-oriented, functional, data-driven programming and data description.
5
+ It combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics.
6
+ Lua is dynamically typed, runs by interpreting bytecode with a register-based virtual machine and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting and rapid prototyping.
4
7
 
5
8
  Lua has been used in [many industrial applications](https://sites.google.com/site/marbux/home/where-lua-is-used#8S4UcLlroV5fq8i3WSheIA) with an emphasis on embedded systems and games.
6
9
 
7
- The home page for Lua is [Lua.org](https://www.lua.org/). Enjoy!
10
+ The home page for Lua is [Lua.org](https://www.lua.org/).
11
+ Enjoy!
8
12
 
9
13
  (Taken from https://www.lua.org/about.html)
@@ -9,6 +9,7 @@
9
9
  "core": true,
10
10
  "unlocked_by": null,
11
11
  "difficulty": 1,
12
+ "auto_approve": true,
12
13
  "topics": [
13
14
  "conditionals",
14
15
  "optional_values",
@@ -151,7 +152,7 @@
151
152
  "slug": "armstrong-numbers",
152
153
  "uuid": "83f70468-941b-4d7d-9df7-6f8b6a54f6bc",
153
154
  "core": false,
154
- "unlocked_by": null,
155
+ "unlocked_by": "sum-of-multiples",
155
156
  "difficulty": 1,
156
157
  "topics": [
157
158
  "algorithms",
@@ -195,6 +196,17 @@
195
196
  "mathematics"
196
197
  ]
197
198
  },
199
+ {
200
+ "slug": "sum-of-multiples",
201
+ "uuid": "4f71d4e9-749e-46ec-a2c8-e17497f1468a",
202
+ "core": true,
203
+ "unlocked_by": null,
204
+ "difficulty": 1,
205
+ "topics": [
206
+ "integers",
207
+ "mathematics"
208
+ ]
209
+ },
198
210
  {
199
211
  "slug": "acronym",
200
212
  "uuid": "cc35f8f2-488e-40f7-adcd-1e690cabc6f8",
@@ -238,7 +250,7 @@
238
250
  "slug": "scrabble-score",
239
251
  "uuid": "b44d1ecb-48db-4841-be99-f48ba2602748",
240
252
  "core": false,
241
- "unlocked_by": null,
253
+ "unlocked_by": "sum-of-multiples",
242
254
  "difficulty": 1,
243
255
  "topics": [
244
256
  "games",
@@ -0,0 +1,15 @@
1
+ # Sum Of Multiples
2
+
3
+ Given a number, find the sum of all the unique multiples of particular numbers up to
4
+ but not including that number.
5
+
6
+ If we list all the natural numbers below 20 that are multiples of 3 or 5,
7
+ we get 3, 5, 6, 9, 10, 12, 15, and 18.
8
+
9
+ The sum of these multiples is 78.
10
+ ## Source
11
+
12
+ A variation on Problem 1 at Project Euler [http://projecteuler.net/problem=1](http://projecteuler.net/problem=1)
13
+
14
+ ## Submitting Incomplete Solutions
15
+ It's possible to submit an incomplete solution so you can see how others have completed the exercise.
@@ -0,0 +1,6 @@
1
+ import sequtils
2
+
3
+ proc sum*(limit: int, factors: seq[int]): int =
4
+ for num in 0..<limit:
5
+ if anyIt(factors, num mod it == 0):
6
+ result = result + num
@@ -0,0 +1,44 @@
1
+ import unittest
2
+
3
+ import sum_of_multiples
4
+
5
+ suite "Sum of Multiples":
6
+
7
+ test "multiples of 3 or 5 up to 1":
8
+ check sum(1, @[3, 5]) == 0
9
+
10
+ test "multiples of 3 or 5 up to 4":
11
+ check sum(4, @[3, 5]) == 3
12
+
13
+ test "multiples of 3 up to 7":
14
+ check sum(7, @[3]) == 9
15
+
16
+ test "multiples of 3 or 5 up to 10":
17
+ check sum(10, @[3, 5]) == 23
18
+
19
+ test "multiples of 3 or 5 up to 100":
20
+ check sum(100, @[3, 5]) == 2318
21
+
22
+ test "multiples of 3 or 5 up to 1000":
23
+ check sum(1000, @[3, 5]) == 233168
24
+
25
+ test "multiples of 7, 13 or 17 up to 20":
26
+ check sum(20, @[7, 13, 17]) == 51
27
+
28
+ test "multiples of 4 or 6 up to 15":
29
+ check sum(15, @[4, 6]) == 30
30
+
31
+ test "multiples of 5, 6 or 8 up to 150":
32
+ check sum(150, @[5, 6, 8]) == 4419
33
+
34
+ test "multiples of 5 or 25 up to 51":
35
+ check sum(51, @[5, 25]) == 275
36
+
37
+ test "multiples of 43 or 47 up to 10000":
38
+ check sum(10000, @[43, 47]) == 2203160
39
+
40
+ test "multiples of 1 up to 100":
41
+ check sum(100, @[1]) == 4950
42
+
43
+ test "multiples of 1 up to 100":
44
+ check sum(10000, @[]) == 0
@@ -7,6 +7,7 @@
7
7
  "slug": "hello-world",
8
8
  "uuid": "da5eb908-8cdf-4f99-93f7-c2b7dcb4fb37",
9
9
  "core": false,
10
+ "auto_approve": true,
10
11
  "unlocked_by": null,
11
12
  "difficulty": 1,
12
13
  "topics": [
@@ -7,6 +7,7 @@
7
7
  "slug": "hello-world",
8
8
  "uuid": "cda3b090-ae52-476b-a782-9cbf43953cf0",
9
9
  "core": false,
10
+ "auto_approve": true,
10
11
  "unlocked_by": null,
11
12
  "difficulty": 1,
12
13
  "topics": [
@@ -1,650 +1,530 @@
1
1
  {
2
2
  "language": "Perl 5",
3
3
  "active": true,
4
- "test_pattern": ".*\\.t$",
4
+ "blurb": "",
5
5
  "solution_pattern": "\\.meta/solutions/.+\\.pm$",
6
- "foregone": [
7
-
8
- ],
6
+ "test_pattern": ".*\\.t$",
9
7
  "exercises": [
10
8
  {
11
- "uuid": "e436ce92-78b9-4b3b-b87e-581fa54cdc65",
12
9
  "slug": "hello-world",
10
+ "uuid": "e436ce92-78b9-4b3b-b87e-581fa54cdc65",
13
11
  "core": false,
14
12
  "unlocked_by": null,
15
13
  "difficulty": 1,
16
- "topics": [
17
-
18
- ]
14
+ "topics": []
19
15
  },
20
16
  {
21
- "uuid": "835a4c46-c837-4684-a1ed-7d257c786d77",
22
17
  "slug": "bob",
18
+ "uuid": "835a4c46-c837-4684-a1ed-7d257c786d77",
23
19
  "core": false,
24
20
  "unlocked_by": null,
25
21
  "difficulty": 1,
26
- "topics": [
27
-
28
- ]
22
+ "topics": []
29
23
  },
30
24
  {
31
- "uuid": "0b512415-2dcf-4dfb-a58f-2765f9a1427b",
32
25
  "slug": "leap",
26
+ "uuid": "0b512415-2dcf-4dfb-a58f-2765f9a1427b",
33
27
  "core": false,
34
28
  "unlocked_by": null,
35
29
  "difficulty": 1,
36
- "topics": [
37
-
38
- ]
30
+ "topics": []
39
31
  },
40
32
  {
41
- "uuid": "55316f62-e3b0-4be7-a478-9fc5ea827d15",
42
33
  "slug": "grains",
34
+ "uuid": "55316f62-e3b0-4be7-a478-9fc5ea827d15",
43
35
  "core": false,
44
36
  "unlocked_by": null,
45
37
  "difficulty": 1,
46
- "topics": [
47
-
48
- ]
38
+ "topics": []
49
39
  },
50
40
  {
51
- "uuid": "85154a10-06e3-4543-8513-4de30b43d015",
52
41
  "slug": "raindrops",
42
+ "uuid": "85154a10-06e3-4543-8513-4de30b43d015",
53
43
  "core": false,
54
44
  "unlocked_by": null,
55
45
  "difficulty": 1,
56
- "topics": [
57
-
58
- ]
46
+ "topics": []
59
47
  },
60
48
  {
61
- "uuid": "5c35f654-8689-4fb3-af81-71fbe0c165f9",
62
49
  "slug": "hamming",
50
+ "uuid": "5c35f654-8689-4fb3-af81-71fbe0c165f9",
63
51
  "core": false,
64
52
  "unlocked_by": null,
65
53
  "difficulty": 1,
66
- "topics": [
67
-
68
- ]
54
+ "topics": []
69
55
  },
70
56
  {
71
- "uuid": "e193fb19-5122-405f-88e0-59e5ee94f64b",
72
57
  "slug": "etl",
58
+ "uuid": "e193fb19-5122-405f-88e0-59e5ee94f64b",
73
59
  "core": false,
74
60
  "unlocked_by": null,
75
61
  "difficulty": 1,
76
- "topics": [
77
-
78
- ]
62
+ "topics": []
79
63
  },
80
64
  {
81
- "uuid": "332370f1-a782-4ffb-a41a-867bf392f05f",
82
65
  "slug": "scrabble-score",
66
+ "uuid": "332370f1-a782-4ffb-a41a-867bf392f05f",
83
67
  "core": false,
84
68
  "unlocked_by": null,
85
69
  "difficulty": 1,
86
- "topics": [
87
-
88
- ]
70
+ "topics": []
89
71
  },
90
72
  {
91
- "uuid": "4693c5a5-948b-4650-9a37-9eb8ee2cfa6d",
92
73
  "slug": "word-count",
74
+ "uuid": "4693c5a5-948b-4650-9a37-9eb8ee2cfa6d",
93
75
  "core": false,
94
76
  "unlocked_by": null,
95
77
  "difficulty": 1,
96
- "topics": [
97
-
98
- ]
78
+ "topics": []
99
79
  },
100
80
  {
101
- "uuid": "c95418a3-d868-42dc-b39d-2505d255fecf",
102
81
  "slug": "anagram",
82
+ "uuid": "c95418a3-d868-42dc-b39d-2505d255fecf",
103
83
  "core": false,
104
84
  "unlocked_by": null,
105
85
  "difficulty": 1,
106
- "topics": [
107
-
108
- ]
86
+ "topics": []
109
87
  },
110
88
  {
111
- "uuid": "590270ac-b638-4292-bbdc-eee1705904f1",
112
89
  "slug": "difference-of-squares",
90
+ "uuid": "590270ac-b638-4292-bbdc-eee1705904f1",
113
91
  "core": false,
114
92
  "unlocked_by": null,
115
93
  "difficulty": 1,
116
- "topics": [
117
-
118
- ]
94
+ "topics": []
119
95
  },
120
96
  {
121
- "uuid": "9aad3797-7001-424b-b38d-1e9db7a99581",
122
97
  "slug": "proverb",
98
+ "uuid": "9aad3797-7001-424b-b38d-1e9db7a99581",
123
99
  "core": false,
124
100
  "unlocked_by": null,
125
101
  "difficulty": 1,
126
- "topics": [
127
-
128
- ]
102
+ "topics": []
129
103
  },
130
104
  {
131
- "uuid": "8f6d6a60-426c-4da0-af4e-7395b2c880d3",
132
105
  "slug": "space-age",
106
+ "uuid": "8f6d6a60-426c-4da0-af4e-7395b2c880d3",
133
107
  "core": false,
134
108
  "unlocked_by": null,
135
109
  "difficulty": 1,
136
- "topics": [
137
-
138
- ]
110
+ "topics": []
139
111
  },
140
112
  {
141
- "uuid": "c1eb4de7-41fe-4395-b5ef-a79a8187e727",
142
113
  "slug": "roman-numerals",
114
+ "uuid": "c1eb4de7-41fe-4395-b5ef-a79a8187e727",
143
115
  "core": false,
144
116
  "unlocked_by": null,
145
117
  "difficulty": 1,
146
- "topics": [
147
-
148
- ]
118
+ "topics": []
149
119
  },
150
120
  {
151
- "uuid": "163f929c-206b-430b-8ac7-ad7b5c062f3d",
152
121
  "slug": "clock",
122
+ "uuid": "163f929c-206b-430b-8ac7-ad7b5c062f3d",
153
123
  "core": false,
154
124
  "unlocked_by": null,
155
125
  "difficulty": 1,
156
- "topics": [
157
-
158
- ]
126
+ "topics": []
159
127
  },
160
128
  {
161
- "uuid": "bcfc5046-ec4e-4b6e-a5c6-811883f021a0",
162
129
  "slug": "prime-factors",
130
+ "uuid": "bcfc5046-ec4e-4b6e-a5c6-811883f021a0",
163
131
  "core": false,
164
132
  "unlocked_by": null,
165
133
  "difficulty": 1,
166
- "topics": [
167
-
168
- ]
134
+ "topics": []
169
135
  },
170
136
  {
171
- "uuid": "1384080d-d9db-4de7-a1db-090fd15ed7e6",
172
137
  "slug": "triangle",
138
+ "uuid": "1384080d-d9db-4de7-a1db-090fd15ed7e6",
173
139
  "core": false,
174
140
  "unlocked_by": null,
175
141
  "difficulty": 1,
176
- "topics": [
177
-
178
- ]
142
+ "topics": []
179
143
  },
180
144
  {
181
- "uuid": "70eaa806-235f-4513-aaff-c827ed80a1ad",
182
145
  "slug": "beer-song",
146
+ "uuid": "70eaa806-235f-4513-aaff-c827ed80a1ad",
183
147
  "core": false,
184
148
  "unlocked_by": null,
185
149
  "difficulty": 1,
186
- "topics": [
187
-
188
- ]
150
+ "topics": []
189
151
  },
190
152
  {
191
- "uuid": "802e2ef6-68e5-4116-a94a-ae0ddb33406d",
192
153
  "slug": "phone-number",
154
+ "uuid": "802e2ef6-68e5-4116-a94a-ae0ddb33406d",
193
155
  "core": false,
194
156
  "unlocked_by": null,
195
157
  "difficulty": 1,
196
- "topics": [
197
-
198
- ]
158
+ "topics": []
199
159
  },
200
160
  {
201
- "uuid": "3029f30c-77b6-49a3-909f-26ca868e5b22",
202
161
  "slug": "robot-name",
162
+ "uuid": "3029f30c-77b6-49a3-909f-26ca868e5b22",
203
163
  "core": false,
204
164
  "unlocked_by": null,
205
165
  "difficulty": 1,
206
- "topics": [
207
-
208
- ]
166
+ "topics": []
209
167
  },
210
168
  {
211
- "uuid": "4b9872a8-bb21-4b1a-952b-032efa13b1da",
212
169
  "slug": "atbash-cipher",
170
+ "uuid": "4b9872a8-bb21-4b1a-952b-032efa13b1da",
213
171
  "core": false,
214
172
  "unlocked_by": null,
215
173
  "difficulty": 1,
216
- "topics": [
217
-
218
- ]
174
+ "topics": []
219
175
  },
220
176
  {
221
- "uuid": "f9fcab93-a6d8-4e36-aee5-3333a1c874ce",
222
177
  "slug": "accumulate",
178
+ "uuid": "f9fcab93-a6d8-4e36-aee5-3333a1c874ce",
223
179
  "core": false,
224
180
  "unlocked_by": null,
225
181
  "difficulty": 1,
226
- "topics": [
227
-
228
- ]
182
+ "topics": []
229
183
  },
230
184
  {
231
- "uuid": "39defad0-2828-4d3e-991f-5e624c68a37e",
232
185
  "slug": "crypto-square",
186
+ "uuid": "39defad0-2828-4d3e-991f-5e624c68a37e",
233
187
  "core": false,
234
188
  "unlocked_by": null,
235
189
  "difficulty": 1,
236
- "topics": [
237
-
238
- ]
190
+ "topics": []
239
191
  },
240
192
  {
241
- "uuid": "88643b77-3889-4395-81a0-c73526ce879a",
242
193
  "slug": "trinary",
194
+ "uuid": "88643b77-3889-4395-81a0-c73526ce879a",
243
195
  "core": false,
244
196
  "unlocked_by": null,
245
197
  "difficulty": 1,
246
- "topics": [
247
-
248
- ]
198
+ "topics": []
249
199
  },
250
200
  {
251
- "uuid": "08343954-918c-4383-a6b8-b8d3d6ef836c",
252
201
  "slug": "rna-transcription",
202
+ "uuid": "08343954-918c-4383-a6b8-b8d3d6ef836c",
253
203
  "core": false,
254
204
  "unlocked_by": null,
255
205
  "difficulty": 1,
256
- "topics": [
257
-
258
- ]
206
+ "topics": []
259
207
  },
260
208
  {
261
- "uuid": "7fd51712-d08f-475b-86c8-2945d054dc54",
262
209
  "slug": "allergies",
210
+ "uuid": "7fd51712-d08f-475b-86c8-2945d054dc54",
263
211
  "core": false,
264
212
  "unlocked_by": null,
265
213
  "difficulty": 1,
266
- "topics": [
267
-
268
- ]
214
+ "topics": []
269
215
  },
270
216
  {
271
- "uuid": "80c6212c-6b25-45b9-b09f-4c085d02f561",
272
217
  "slug": "simple-cipher",
218
+ "uuid": "80c6212c-6b25-45b9-b09f-4c085d02f561",
273
219
  "core": false,
274
220
  "unlocked_by": null,
275
221
  "difficulty": 1,
276
- "topics": [
277
-
278
- ]
222
+ "topics": []
279
223
  },
280
224
  {
281
- "uuid": "35e90496-58a6-48be-ad55-14e3a145bd5c",
282
225
  "slug": "series",
226
+ "uuid": "35e90496-58a6-48be-ad55-14e3a145bd5c",
283
227
  "core": false,
284
228
  "unlocked_by": null,
285
229
  "difficulty": 1,
286
- "topics": [
287
-
288
- ]
230
+ "topics": []
289
231
  },
290
232
  {
291
- "uuid": "d5f021a7-d797-4561-aef9-1d5c7a9610d8",
292
233
  "slug": "luhn",
234
+ "uuid": "d5f021a7-d797-4561-aef9-1d5c7a9610d8",
293
235
  "core": false,
294
236
  "unlocked_by": null,
295
237
  "difficulty": 1,
296
- "topics": [
297
-
298
- ]
238
+ "topics": []
299
239
  },
300
240
  {
301
- "uuid": "5ab75e9e-39ae-4f7c-9cc8-e9ddd9d78415",
302
241
  "slug": "house",
242
+ "uuid": "5ab75e9e-39ae-4f7c-9cc8-e9ddd9d78415",
303
243
  "core": false,
304
244
  "unlocked_by": null,
305
245
  "difficulty": 1,
306
- "topics": [
307
-
308
- ]
246
+ "topics": []
309
247
  },
310
248
  {
311
- "uuid": "0f2e5082-9d97-414d-aa82-d03aed48d81a",
312
249
  "slug": "gigasecond",
250
+ "uuid": "0f2e5082-9d97-414d-aa82-d03aed48d81a",
313
251
  "core": false,
314
252
  "unlocked_by": null,
315
253
  "difficulty": 1,
316
- "topics": [
317
-
318
- ]
254
+ "topics": []
319
255
  },
320
256
  {
321
- "uuid": "fe458d54-f002-4a96-a49f-1ca40e679f72",
322
257
  "slug": "strain",
258
+ "uuid": "fe458d54-f002-4a96-a49f-1ca40e679f72",
323
259
  "core": false,
324
260
  "unlocked_by": null,
325
261
  "difficulty": 1,
326
- "topics": [
327
-
328
- ]
262
+ "topics": []
329
263
  },
330
264
  {
331
- "uuid": "64c1e2fd-1d47-4734-8d45-206fb5bd1f57",
332
265
  "slug": "pig-latin",
266
+ "uuid": "64c1e2fd-1d47-4734-8d45-206fb5bd1f57",
333
267
  "core": false,
334
268
  "unlocked_by": null,
335
269
  "difficulty": 1,
336
- "topics": [
337
-
338
- ]
270
+ "topics": []
339
271
  },
340
272
  {
341
- "uuid": "7b8c4795-4317-4145-8240-6c3c19c1067c",
342
273
  "slug": "linked-list",
274
+ "uuid": "7b8c4795-4317-4145-8240-6c3c19c1067c",
343
275
  "core": false,
344
276
  "unlocked_by": null,
345
277
  "difficulty": 1,
346
- "topics": [
347
-
348
- ]
278
+ "topics": []
349
279
  },
350
280
  {
351
- "uuid": "21c90e54-55b3-4f23-af90-00323964027b",
352
281
  "slug": "list-ops",
282
+ "uuid": "21c90e54-55b3-4f23-af90-00323964027b",
353
283
  "core": false,
354
284
  "unlocked_by": null,
355
285
  "difficulty": 1,
356
- "topics": [
357
-
358
- ]
286
+ "topics": []
359
287
  },
360
288
  {
361
- "uuid": "b2c9b704-0266-4c16-a2f7-54294789a7f1",
362
289
  "slug": "wordy",
290
+ "uuid": "b2c9b704-0266-4c16-a2f7-54294789a7f1",
363
291
  "core": false,
364
292
  "unlocked_by": null,
365
293
  "difficulty": 1,
366
- "topics": [
367
-
368
- ]
294
+ "topics": []
369
295
  },
370
296
  {
371
- "uuid": "a13a649a-3ce8-4bbb-ae93-41441e699c8a",
372
297
  "slug": "largest-series-product",
298
+ "uuid": "a13a649a-3ce8-4bbb-ae93-41441e699c8a",
373
299
  "core": false,
374
300
  "unlocked_by": null,
375
301
  "difficulty": 1,
376
- "topics": [
377
-
378
- ]
302
+ "topics": []
379
303
  },
380
304
  {
381
- "uuid": "742bccfd-20f9-44f1-8935-e84384807088",
382
305
  "slug": "hexadecimal",
306
+ "uuid": "742bccfd-20f9-44f1-8935-e84384807088",
383
307
  "core": false,
384
308
  "unlocked_by": null,
385
309
  "difficulty": 1,
386
- "topics": [
387
-
388
- ]
310
+ "topics": []
389
311
  },
390
312
  {
391
- "uuid": "46e78725-bc28-4536-9149-9d001033be07",
392
313
  "slug": "secret-handshake",
314
+ "uuid": "46e78725-bc28-4536-9149-9d001033be07",
393
315
  "core": false,
394
316
  "unlocked_by": null,
395
317
  "difficulty": 1,
396
- "topics": [
397
-
398
- ]
318
+ "topics": []
399
319
  },
400
320
  {
401
- "uuid": "ab72941e-040b-4254-8908-1832b602f4ee",
402
321
  "slug": "kindergarten-garden",
322
+ "uuid": "ab72941e-040b-4254-8908-1832b602f4ee",
403
323
  "core": false,
404
324
  "unlocked_by": null,
405
325
  "difficulty": 1,
406
- "topics": [
407
-
408
- ]
326
+ "topics": []
409
327
  },
410
328
  {
411
- "uuid": "2e7e50a5-9790-4479-a26a-0e57823b00de",
412
329
  "slug": "nucleotide-count",
330
+ "uuid": "2e7e50a5-9790-4479-a26a-0e57823b00de",
413
331
  "core": false,
414
332
  "unlocked_by": null,
415
333
  "difficulty": 1,
416
- "topics": [
417
-
418
- ]
334
+ "topics": []
419
335
  },
420
336
  {
421
- "uuid": "9393df8b-f005-4972-a1b9-f9c55dc906bd",
422
337
  "slug": "binary-search",
338
+ "uuid": "9393df8b-f005-4972-a1b9-f9c55dc906bd",
423
339
  "core": false,
424
340
  "unlocked_by": null,
425
341
  "difficulty": 1,
426
- "topics": [
427
-
428
- ]
342
+ "topics": []
429
343
  },
430
344
  {
431
- "uuid": "ee231adc-6770-47b0-88b2-6a7cf3140224",
432
345
  "slug": "matrix",
346
+ "uuid": "ee231adc-6770-47b0-88b2-6a7cf3140224",
433
347
  "core": false,
434
348
  "unlocked_by": null,
435
349
  "difficulty": 1,
436
- "topics": [
437
-
438
- ]
350
+ "topics": []
439
351
  },
440
352
  {
441
- "uuid": "3fc3e55d-ecf0-4c5b-8612-937c96a0cb45",
442
353
  "slug": "pascals-triangle",
354
+ "uuid": "3fc3e55d-ecf0-4c5b-8612-937c96a0cb45",
443
355
  "core": false,
444
356
  "unlocked_by": null,
445
357
  "difficulty": 1,
446
- "topics": [
447
-
448
- ]
358
+ "topics": []
449
359
  },
450
360
  {
451
- "uuid": "72f91fb8-88f3-43e3-8a4a-8ad258fa161c",
452
361
  "slug": "say",
362
+ "uuid": "72f91fb8-88f3-43e3-8a4a-8ad258fa161c",
453
363
  "core": false,
454
364
  "unlocked_by": null,
455
365
  "difficulty": 1,
456
- "topics": [
457
-
458
- ]
366
+ "topics": []
459
367
  },
460
368
  {
461
- "uuid": "89a265f6-37b9-47fb-9ea5-5dba09852e48",
462
369
  "slug": "grade-school",
370
+ "uuid": "89a265f6-37b9-47fb-9ea5-5dba09852e48",
463
371
  "core": false,
464
372
  "unlocked_by": null,
465
373
  "difficulty": 1,
466
- "topics": [
467
-
468
- ]
374
+ "topics": []
469
375
  },
470
376
  {
471
- "uuid": "bd880111-6a69-4310-a79f-13735471c8ef",
472
377
  "slug": "meetup",
378
+ "uuid": "bd880111-6a69-4310-a79f-13735471c8ef",
473
379
  "core": false,
474
380
  "unlocked_by": null,
475
381
  "difficulty": 1,
476
- "topics": [
477
-
478
- ]
382
+ "topics": []
479
383
  },
480
384
  {
481
- "uuid": "b190f24e-134f-402b-b2b4-98b3a6f84465",
482
385
  "slug": "queen-attack",
386
+ "uuid": "b190f24e-134f-402b-b2b4-98b3a6f84465",
483
387
  "core": false,
484
388
  "unlocked_by": null,
485
389
  "difficulty": 1,
486
- "topics": [
487
-
488
- ]
390
+ "topics": []
489
391
  },
490
392
  {
491
- "uuid": "70c36cde-e574-4b6d-9f71-3d284694ecb1",
492
393
  "slug": "ocr-numbers",
394
+ "uuid": "70c36cde-e574-4b6d-9f71-3d284694ecb1",
493
395
  "core": false,
494
396
  "unlocked_by": null,
495
397
  "difficulty": 1,
496
- "topics": [
497
-
498
- ]
398
+ "topics": []
499
399
  },
500
400
  {
501
- "uuid": "4866701e-bd9c-41f9-a3e2-43c0ef39ad57",
502
401
  "slug": "palindrome-products",
402
+ "uuid": "4866701e-bd9c-41f9-a3e2-43c0ef39ad57",
503
403
  "core": false,
504
404
  "unlocked_by": null,
505
405
  "difficulty": 1,
506
- "topics": [
507
-
508
- ]
406
+ "topics": []
509
407
  },
510
408
  {
511
- "uuid": "5e93b912-3e08-425a-999d-48dca196a442",
512
409
  "slug": "twelve-days",
410
+ "uuid": "5e93b912-3e08-425a-999d-48dca196a442",
513
411
  "core": false,
514
412
  "unlocked_by": null,
515
413
  "difficulty": 1,
516
- "topics": [
517
-
518
- ]
414
+ "topics": []
519
415
  },
520
416
  {
521
- "uuid": "a0832961-e751-4f51-b1d4-e0c5bc5acf27",
522
417
  "slug": "binary-search-tree",
418
+ "uuid": "a0832961-e751-4f51-b1d4-e0c5bc5acf27",
523
419
  "core": false,
524
420
  "unlocked_by": null,
525
421
  "difficulty": 1,
526
- "topics": [
527
-
528
- ]
422
+ "topics": []
529
423
  },
530
424
  {
531
- "uuid": "9c855ef0-08b4-4810-9a58-285a44082b94",
532
425
  "slug": "sum-of-multiples",
426
+ "uuid": "9c855ef0-08b4-4810-9a58-285a44082b94",
533
427
  "core": false,
534
428
  "unlocked_by": null,
535
429
  "difficulty": 1,
536
- "topics": [
537
-
538
- ]
430
+ "topics": []
539
431
  },
540
432
  {
541
- "uuid": "edcec766-70fb-41bd-a2fd-09815a01d76e",
542
433
  "slug": "sieve",
434
+ "uuid": "edcec766-70fb-41bd-a2fd-09815a01d76e",
543
435
  "core": false,
544
436
  "unlocked_by": null,
545
437
  "difficulty": 1,
546
- "topics": [
547
-
548
- ]
438
+ "topics": []
549
439
  },
550
440
  {
551
- "uuid": "43a4799d-5bdf-47af-b6e0-fdc74277589d",
552
441
  "slug": "food-chain",
442
+ "uuid": "43a4799d-5bdf-47af-b6e0-fdc74277589d",
553
443
  "core": false,
554
444
  "unlocked_by": null,
555
445
  "difficulty": 1,
556
- "topics": [
557
-
558
- ]
446
+ "topics": []
559
447
  },
560
448
  {
561
- "uuid": "239a4e5e-9a09-4a2d-af2d-252dcf36a3a7",
562
449
  "slug": "pythagorean-triplet",
450
+ "uuid": "239a4e5e-9a09-4a2d-af2d-252dcf36a3a7",
563
451
  "core": false,
564
452
  "unlocked_by": null,
565
453
  "difficulty": 1,
566
- "topics": [
567
-
568
- ]
454
+ "topics": []
569
455
  },
570
456
  {
571
- "uuid": "ea8450d8-85a3-4530-a5cc-7314abe554eb",
572
457
  "slug": "saddle-points",
458
+ "uuid": "ea8450d8-85a3-4530-a5cc-7314abe554eb",
573
459
  "core": false,
574
460
  "unlocked_by": null,
575
461
  "difficulty": 1,
576
- "topics": [
577
-
578
- ]
462
+ "topics": []
579
463
  },
580
464
  {
581
- "uuid": "9986bde0-92cc-434a-b32c-663f789bd41d",
582
465
  "slug": "robot-simulator",
466
+ "uuid": "9986bde0-92cc-434a-b32c-663f789bd41d",
583
467
  "core": false,
584
468
  "unlocked_by": null,
585
469
  "difficulty": 1,
586
- "topics": [
587
-
588
- ]
470
+ "topics": []
589
471
  },
590
472
  {
591
- "uuid": "8cbf6c2c-6f89-4e2e-a63f-5ea5af41f033",
592
473
  "slug": "minesweeper",
474
+ "uuid": "8cbf6c2c-6f89-4e2e-a63f-5ea5af41f033",
593
475
  "core": false,
594
476
  "unlocked_by": null,
595
477
  "difficulty": 1,
596
- "topics": [
597
-
598
- ]
478
+ "topics": []
599
479
  },
600
480
  {
601
- "uuid": "500cf4b8-d442-423a-957a-b95325b8a718",
602
481
  "slug": "custom-set",
482
+ "uuid": "500cf4b8-d442-423a-957a-b95325b8a718",
603
483
  "core": false,
604
484
  "unlocked_by": null,
605
485
  "difficulty": 1,
606
- "topics": [
607
-
608
- ]
486
+ "topics": []
609
487
  },
610
488
  {
611
- "uuid": "b615b598-d69a-4ba9-9052-79243b292734",
612
489
  "slug": "simple-linked-list",
490
+ "uuid": "b615b598-d69a-4ba9-9052-79243b292734",
613
491
  "core": false,
614
492
  "unlocked_by": null,
615
493
  "difficulty": 1,
616
- "topics": [
617
-
618
- ]
494
+ "topics": []
619
495
  },
620
496
  {
621
- "uuid": "4e2c69bc-b83f-45b4-872b-43bbdc559ece",
622
497
  "slug": "sublist",
498
+ "uuid": "4e2c69bc-b83f-45b4-872b-43bbdc559ece",
623
499
  "core": false,
624
500
  "unlocked_by": null,
625
501
  "difficulty": 1,
626
- "topics": [
627
-
628
- ]
502
+ "topics": []
629
503
  },
630
504
  {
631
- "uuid": "2e604b17-7886-47ad-83a5-1199dc1838a4",
632
505
  "slug": "all-your-base",
506
+ "uuid": "2e604b17-7886-47ad-83a5-1199dc1838a4",
633
507
  "core": false,
634
508
  "unlocked_by": null,
635
509
  "difficulty": 1,
636
- "topics": [
637
-
638
- ]
510
+ "topics": []
639
511
  },
640
512
  {
641
- "uuid": "2e74fa26-f946-4b79-87b9-27f60f03af8f",
642
513
  "slug": "binary",
514
+ "uuid": "2e74fa26-f946-4b79-87b9-27f60f03af8f",
515
+ "core": false,
516
+ "unlocked_by": null,
517
+ "difficulty": 0,
518
+ "topics": null,
643
519
  "deprecated": true
644
520
  },
645
521
  {
646
- "uuid": "a6f46028-7334-4504-877e-eda8ebdd9ea9",
647
522
  "slug": "point-mutations",
523
+ "uuid": "a6f46028-7334-4504-877e-eda8ebdd9ea9",
524
+ "core": false,
525
+ "unlocked_by": null,
526
+ "difficulty": 0,
527
+ "topics": null,
648
528
  "deprecated": true
649
529
  }
650
530
  ]