trackler 2.2.1.179 → 2.2.1.180

Sign up to get free protection for your applications and to get access to all the features.
Files changed (144) hide show
  1. checksums.yaml +4 -4
  2. data/lib/trackler/version.rb +1 -1
  3. data/problem-specifications/exercises/yacht/description.md +14 -13
  4. data/tracks/ballerina/config.json +1 -0
  5. data/tracks/coffeescript/config.json +138 -41
  6. data/tracks/coffeescript/docs/ABOUT.md +3 -7
  7. data/tracks/coq/config.json +1 -0
  8. data/tracks/d/config.json +1 -0
  9. data/tracks/dart/config.json +1 -0
  10. data/tracks/elixir/config.json +17 -16
  11. data/tracks/elixir/docs/ABOUT.md +10 -2
  12. data/tracks/fortran/config.json +1 -0
  13. data/tracks/gnu-apl/config.json +1 -0
  14. data/tracks/go/config.json +13 -0
  15. data/tracks/go/exercises/list-ops/README.md +27 -0
  16. data/tracks/go/exercises/list-ops/example.go +99 -0
  17. data/tracks/go/exercises/list-ops/listops_test.go +291 -0
  18. data/tracks/groovy/config.json +1 -0
  19. data/tracks/haxe/config.json +1 -0
  20. data/tracks/perl5/exercises/leap/.meta/exercise-data.yaml +3 -5
  21. data/tracks/perl5/exercises/leap/.meta/solutions/Leap.pm +2 -4
  22. data/tracks/perl5/exercises/leap/Leap.pm +1 -1
  23. data/tracks/perl5/exercises/leap/leap.t +2 -2
  24. data/tracks/php/config.json +1 -0
  25. data/tracks/plsql/config.json +1 -0
  26. data/tracks/pony/config.json +1 -0
  27. data/tracks/purescript/config.json +1 -0
  28. data/tracks/reasonml/config/exercise_readme.go.tmpl +18 -2
  29. data/tracks/reasonml/exercises/anagram/README.md +15 -4
  30. data/tracks/reasonml/exercises/armstrong-numbers/README.md +3 -4
  31. data/tracks/reasonml/exercises/binary-search/README.md +14 -7
  32. data/tracks/reasonml/exercises/bob/README.md +14 -6
  33. data/tracks/reasonml/exercises/change/README.md +2 -4
  34. data/tracks/reasonml/exercises/hello-world/README.md +2 -3
  35. data/tracks/reasonml/exercises/isogram/README.md +4 -6
  36. data/tracks/reasonml/exercises/leap/README.md +14 -4
  37. data/tracks/reasonml/exercises/pangram/README.md +13 -3
  38. data/tracks/reasonml/exercises/phone-number/README.md +15 -7
  39. data/tracks/reasonml/exercises/raindrops/README.md +14 -7
  40. data/tracks/reasonml/exercises/rna-transcription/README.md +13 -3
  41. data/tracks/reasonml/exercises/roman-numerals/README.md +4 -8
  42. data/tracks/reasonml/exercises/run-length-encoding/README.md +14 -7
  43. data/tracks/reasonml/exercises/space-age/README.md +13 -3
  44. data/tracks/reasonml/exercises/word-count/README.md +18 -8
  45. data/tracks/rust/.travis.yml +1 -0
  46. data/tracks/rust/_test/check-exercises-for-authors.sh +10 -0
  47. data/tracks/rust/bin/format_exercises +2 -0
  48. data/tracks/rust/exercises/accumulate/Cargo.toml +0 -1
  49. data/tracks/rust/exercises/accumulate/example.rs +4 -1
  50. data/tracks/rust/exercises/acronym/example.rs +6 -5
  51. data/tracks/rust/exercises/acronym/tests/acronym.rs +1 -1
  52. data/tracks/rust/exercises/all-your-base/example.rs +8 -2
  53. data/tracks/rust/exercises/allergies/example.rs +28 -6
  54. data/tracks/rust/exercises/alphametics/example.rs +18 -10
  55. data/tracks/rust/exercises/anagram/example.rs +8 -4
  56. data/tracks/rust/exercises/atbash-cipher/example.rs +15 -15
  57. data/tracks/rust/exercises/beer-song/example.rs +18 -12
  58. data/tracks/rust/exercises/binary-search/Cargo.toml +0 -1
  59. data/tracks/rust/exercises/binary-search/example.rs +3 -4
  60. data/tracks/rust/exercises/bob/example.rs +11 -5
  61. data/tracks/rust/exercises/book-store/Cargo-example.toml +0 -1
  62. data/tracks/rust/exercises/book-store/Cargo.toml +0 -1
  63. data/tracks/rust/exercises/book-store/example.rs +15 -19
  64. data/tracks/rust/exercises/bowling/example.rs +3 -1
  65. data/tracks/rust/exercises/bracket-push/example.rs +7 -2
  66. data/tracks/rust/exercises/circular-buffer/example.rs +1 -1
  67. data/tracks/rust/exercises/clock/.meta/ALLOWED_TO_NOT_COMPILE +3 -0
  68. data/tracks/rust/exercises/clock/Cargo.toml +0 -1
  69. data/tracks/rust/exercises/clock/example.rs +5 -3
  70. data/tracks/rust/exercises/clock/src/lib.rs +14 -0
  71. data/tracks/rust/exercises/collatz-conjecture/example.rs +2 -2
  72. data/tracks/rust/exercises/crypto-square/Cargo-example.toml +0 -1
  73. data/tracks/rust/exercises/crypto-square/Cargo.toml +0 -1
  74. data/tracks/rust/exercises/custom-set/example.rs +17 -15
  75. data/tracks/rust/exercises/decimal/Cargo-example.toml +0 -1
  76. data/tracks/rust/exercises/decimal/Cargo.toml +0 -1
  77. data/tracks/rust/exercises/decimal/example.rs +5 -5
  78. data/tracks/rust/exercises/diamond/Cargo.toml +0 -1
  79. data/tracks/rust/exercises/difference-of-squares/example.rs +1 -1
  80. data/tracks/rust/exercises/dominoes/example.rs +20 -19
  81. data/tracks/rust/exercises/etl/example.rs +4 -3
  82. data/tracks/rust/exercises/forth/example.rs +29 -45
  83. data/tracks/rust/exercises/grade-school/example.rs +4 -2
  84. data/tracks/rust/exercises/hexadecimal/example.rs +2 -4
  85. data/tracks/rust/exercises/isbn-verifier/example.rs +5 -6
  86. data/tracks/rust/exercises/isbn-verifier/tests/isbn-verifier.rs +12 -0
  87. data/tracks/rust/exercises/isogram/example.rs +9 -3
  88. data/tracks/rust/exercises/largest-series-product/example.rs +2 -1
  89. data/tracks/rust/exercises/luhn-from/example.rs +3 -1
  90. data/tracks/rust/exercises/luhn/example.rs +5 -3
  91. data/tracks/rust/exercises/macros/Cargo.toml +0 -1
  92. data/tracks/rust/exercises/nth-prime/Cargo.toml +0 -1
  93. data/tracks/rust/exercises/nth-prime/example.rs +6 -6
  94. data/tracks/rust/exercises/nucleotide-codons/Cargo.toml +0 -1
  95. data/tracks/rust/exercises/nucleotide-codons/example.rs +23 -17
  96. data/tracks/rust/exercises/nucleotide-count/example.rs +15 -5
  97. data/tracks/rust/exercises/nucleotide-count/src/lib.rs +15 -0
  98. data/tracks/rust/exercises/nucleotide-count/tests/nucleotide-count.rs +3 -3
  99. data/tracks/rust/exercises/palindrome-products/Cargo.toml +0 -1
  100. data/tracks/rust/exercises/pangram/example.rs +6 -6
  101. data/tracks/rust/exercises/parallel-letter-frequency/example.rs +7 -4
  102. data/tracks/rust/exercises/pascals-triangle/example.rs +6 -2
  103. data/tracks/rust/exercises/perfect-numbers/example.rs +2 -2
  104. data/tracks/rust/exercises/phone-number/example.rs +11 -15
  105. data/tracks/rust/exercises/pig-latin/Cargo-example.toml +0 -1
  106. data/tracks/rust/exercises/pig-latin/Cargo.toml +0 -1
  107. data/tracks/rust/exercises/pig-latin/example.rs +6 -2
  108. data/tracks/rust/exercises/poker/Cargo-example.toml +0 -1
  109. data/tracks/rust/exercises/poker/Cargo.toml +0 -1
  110. data/tracks/rust/exercises/poker/example.rs +9 -8
  111. data/tracks/rust/exercises/prime-factors/Cargo.toml +0 -1
  112. data/tracks/rust/exercises/prime-factors/example.rs +1 -1
  113. data/tracks/rust/exercises/protein-translation/Cargo.toml +0 -1
  114. data/tracks/rust/exercises/protein-translation/example.rs +6 -5
  115. data/tracks/rust/exercises/proverb/Cargo.toml +0 -1
  116. data/tracks/rust/exercises/proverb/example.rs +0 -1
  117. data/tracks/rust/exercises/pythagorean-triplet/Cargo.toml +0 -1
  118. data/tracks/rust/exercises/pythagorean-triplet/example.rs +3 -3
  119. data/tracks/rust/exercises/queen-attack/example.rs +3 -3
  120. data/tracks/rust/exercises/react/example.rs +61 -29
  121. data/tracks/rust/exercises/reverse-string/Cargo.toml +0 -1
  122. data/tracks/rust/exercises/rna-transcription/example.rs +17 -9
  123. data/tracks/rust/exercises/robot-name/example.rs +4 -3
  124. data/tracks/rust/exercises/robot-simulator/example.rs +5 -2
  125. data/tracks/rust/exercises/roman-numerals/example.rs +15 -14
  126. data/tracks/rust/exercises/rotational-cipher/Cargo.toml +0 -1
  127. data/tracks/rust/exercises/rotational-cipher/example.rs +10 -14
  128. data/tracks/rust/exercises/rotational-cipher/src/lib.rs +7 -1
  129. data/tracks/rust/exercises/run-length-encoding/Cargo.toml +0 -1
  130. data/tracks/rust/exercises/run-length-encoding/example.rs +34 -29
  131. data/tracks/rust/exercises/saddle-points/example.rs +0 -1
  132. data/tracks/rust/exercises/say/Cargo.toml +0 -1
  133. data/tracks/rust/exercises/say/example.rs +34 -8
  134. data/tracks/rust/exercises/series/example.rs +6 -8
  135. data/tracks/rust/exercises/simple-linked-list/example.rs +0 -2
  136. data/tracks/rust/exercises/spiral-matrix/example.rs +0 -1
  137. data/tracks/rust/exercises/tournament/example.rs +33 -20
  138. data/tracks/rust/exercises/triangle/example.rs +1 -1
  139. data/tracks/rust/exercises/two-bucket/example.rs +2 -6
  140. data/tracks/rust/exercises/two-fer/example.rs +3 -3
  141. data/tracks/rust/exercises/variable-length-quantity/example.rs +2 -3
  142. data/tracks/rust/exercises/word-count/example.rs +4 -1
  143. data/tracks/rust/exercises/wordy/example.rs +10 -4
  144. metadata +7 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: de1658eb0260d4f09d4fa14ba3bbededefc02f33
4
- data.tar.gz: 1c17f386b467a4ee630fd582ad8404c5582f138b
3
+ metadata.gz: a17b87a3a33f268568ce842412f05a2f0888b034
4
+ data.tar.gz: 50e051defb1b6d80eac2a7b9977fc5cc28b593f9
5
5
  SHA512:
6
- metadata.gz: b90a4be30889386c990d303e73e62ec5c7583027bc83bd885aeb60affa510c3af563b97dd3eb2fb290fbf7303ebfcbb1aed5c8907b0760e0cb47b7ca1c2d47af
7
- data.tar.gz: 5ac571a21c860e43662578195809ab6b058f8bb32f8e5e395c629f3835c4ccc5f46b769cf6421e0b42438892f9b7ad473911cdc8bb8537acca0f2c7657a34ba4
6
+ metadata.gz: c739520d92524bef70801555a5ff5eefc6377c57052b035d67be602a48077dd19b577805bcd13bde754aeaa6b9af1af8eeacde0d5ce4ce8b2cd7138d2ec6f0d6
7
+ data.tar.gz: 02f8c62c0bd19ccb50fc6283182c7d972f4ff78ef140bf108201c5dd4c5801197540b274ac5751743a62702f29c143a5e3f4089662ff48ceac9914dd52c1b4af
@@ -1,3 +1,3 @@
1
1
  module Trackler
2
- VERSION = "2.2.1.179"
2
+ VERSION = "2.2.1.180"
3
3
  end
@@ -8,19 +8,20 @@ category chosen.
8
8
 
9
9
  ## Scores in Yacht
10
10
 
11
- Category Score Example
12
- Ones 1 × number of ones 1 1 1 4 5 scores 3
13
- Twos 2 × number of twos 2 2 3 4 5 scores 4
14
- Threes 3 × number of threes 3 3 3 3 3 scores 15
15
- Fours 4 × number of fours 1 2 3 3 5 scores 0
16
- Fives 5 × number of fives 5 1 5 2 5 scores 15
17
- Sixes 6 × number of sixes 2 3 4 5 6 scores 6
18
- Full House Total of the dice 3 3 3 5 5 scores 19
19
- Four of a Kind Total of the four dice 4 4 4 4 6 scores 16
20
- Little Straight 30 points 1 2 3 4 5 scores 30
21
- Big Straight 30 points 2 3 4 5 6 scores 30
22
- Choice Sum of the dice 2 3 3 4 6 scores 18
23
- Yacht 50 points 4 4 4 4 4 scores 50
11
+ | Category | Score | Description | Example |
12
+ | -------- | ----- | ----------- | ------- |
13
+ | Ones | 1 × number of ones | Any combination | 1 1 1 4 5 scores 3 |
14
+ | Twos | 2 × number of twos | Any combination | 2 2 3 4 5 scores 4 |
15
+ | Threes | 3 × number of threes | Any combination | 3 3 3 3 3 scores 15 |
16
+ | Fours | 4 × number of fours | Any combination | 1 2 3 3 5 scores 0 |
17
+ | Fives | 5 × number of fives| Any combination | 5 1 5 2 5 scores 15 |
18
+ | Sixes | 6 × number of sixes | Any combination | 2 3 4 5 6 scores 6 |
19
+ | Full House | Total of the dice | Three of one number and two of another | 3 3 3 5 5 scores 19 |
20
+ | Four of a Kind | Total of the four dice | At least four dice showing the same face | 4 4 4 4 6 scores 16 |
21
+ | Little Straight | 30 points | 1-2-3-4-5 | 1 2 3 4 5 scores 30 |
22
+ | Big Straight | 30 points | 2-3-4-5-6 | 2 3 4 5 6 scores 30 |
23
+ | Choice | Sum of the dice | Any combination | 2 3 3 4 6 scores 18 |
24
+ | Yacht | 50 points | All five dice showing the same face | 4 4 4 4 4 scores 50 |
24
25
 
25
26
  If the dice do not satisfy the requirements of a category, the score is zero.
26
27
  If, for example, *Four Of A Kind* is entered in the *Yacht* category, zero
@@ -11,6 +11,7 @@
11
11
  "slug": "hello-world",
12
12
  "uuid": "91441035-67fa-40e3-a4d5-39476801172a",
13
13
  "core": true,
14
+ "auto_approve": true,
14
15
  "unlocked_by": null,
15
16
  "difficulty": 1,
16
17
  "topics": [
@@ -1,112 +1,170 @@
1
1
  {
2
2
  "language": "CoffeeScript",
3
3
  "active": true,
4
- "blurb": "",
4
+ "blurb": "CoffeeScript is a language that compiles into JavaScript. It uses an alternative syntax to the Java-like syntax of JavaScript, and is one of many new transpiled languages used in web development.",
5
5
  "test_pattern": "spec.coffee",
6
6
  "exercises": [
7
7
  {
8
8
  "slug": "hello-world",
9
9
  "uuid": "0d1ce0cd-f7f2-4843-82ac-b0b4d995fa16",
10
10
  "core": false,
11
+ "auto_approve": true,
11
12
  "unlocked_by": null,
12
13
  "difficulty": 1,
13
- "topics": []
14
+ "topics": [
15
+ "conditionals",
16
+ "control_flow_if_statements",
17
+ "optional_values",
18
+ "text_formatting"
19
+ ]
14
20
  },
15
21
  {
16
22
  "slug": "bob",
17
23
  "uuid": "a8e713a1-e8b9-48b2-b20d-7121b0ecf6c0",
18
24
  "core": false,
19
25
  "unlocked_by": null,
20
- "difficulty": 1,
21
- "topics": []
26
+ "difficulty": 5,
27
+ "topics": [
28
+ "conditionals",
29
+ "control_flow_switch",
30
+ "text_formatting"
31
+ ]
22
32
  },
23
33
  {
24
34
  "slug": "word-count",
25
35
  "uuid": "e80080ca-04a9-40b5-affe-88f1d617dc97",
26
36
  "core": false,
27
37
  "unlocked_by": null,
28
- "difficulty": 1,
29
- "topics": []
38
+ "difficulty": 3,
39
+ "topics": [
40
+ "maps",
41
+ "strings",
42
+ "text_formatting",
43
+ "transforming",
44
+ "variables"
45
+ ]
30
46
  },
31
47
  {
32
48
  "slug": "accumulate",
33
49
  "uuid": "b4670a87-1436-4e83-a641-76a6ec00fab8",
34
50
  "core": false,
35
51
  "unlocked_by": null,
36
- "difficulty": 1,
37
- "topics": []
52
+ "difficulty": 3,
53
+ "topics": [
54
+ "arrays",
55
+ "maps",
56
+ "transforming"
57
+ ]
38
58
  },
39
59
  {
40
60
  "slug": "binary",
41
61
  "uuid": "414dcffe-029a-4558-aabe-d933cd148abf",
42
62
  "core": false,
43
63
  "unlocked_by": null,
44
- "difficulty": 1,
45
- "topics": []
64
+ "difficulty": 2,
65
+ "topics": [
66
+ "integers",
67
+ "transforming"
68
+ ]
46
69
  },
47
70
  {
48
71
  "slug": "anagram",
49
72
  "uuid": "22fe2f9c-71af-4ce0-b3cb-690a93654fe6",
50
73
  "core": false,
51
74
  "unlocked_by": null,
52
- "difficulty": 1,
53
- "topics": []
75
+ "difficulty": 2,
76
+ "topics": [
77
+ "sorting",
78
+ "strings",
79
+ "text_formatting"
80
+ ]
54
81
  },
55
82
  {
56
83
  "slug": "trinary",
57
84
  "uuid": "3b225ecc-1321-476d-8aa7-db352f952c61",
58
85
  "core": false,
59
86
  "unlocked_by": null,
60
- "difficulty": 1,
61
- "topics": []
87
+ "difficulty": 3,
88
+ "topics": [
89
+ "integers",
90
+ "transforming"
91
+ ]
62
92
  },
63
93
  {
64
94
  "slug": "hexadecimal",
65
95
  "uuid": "bad8f00c-a480-4cf9-8939-2ec45f59ff42",
66
96
  "core": false,
67
97
  "unlocked_by": null,
68
- "difficulty": 1,
69
- "topics": []
98
+ "difficulty": 3,
99
+ "topics": [
100
+ "integers",
101
+ "transforming"
102
+ ]
70
103
  },
71
104
  {
72
105
  "slug": "triangle",
73
106
  "uuid": "42292f42-ccfe-4103-a6f3-a057bca32c49",
74
107
  "core": false,
75
108
  "unlocked_by": null,
76
- "difficulty": 1,
77
- "topics": []
109
+ "difficulty": 2,
110
+ "topics": [
111
+ "arrays",
112
+ "equality",
113
+ "mathematics"
114
+ ]
78
115
  },
79
116
  {
80
117
  "slug": "luhn",
81
118
  "uuid": "85c6c117-0173-4a1a-ae33-86427d6512dd",
82
119
  "core": false,
83
120
  "unlocked_by": null,
84
- "difficulty": 1,
85
- "topics": []
121
+ "difficulty": 2,
122
+ "topics": [
123
+ "algorithms",
124
+ "arrays",
125
+ "integers",
126
+ "mathematics",
127
+ "pattern_recognition"
128
+ ]
86
129
  },
87
130
  {
88
131
  "slug": "binary-search-tree",
89
132
  "uuid": "bf14de70-e231-48a1-b208-2d54d3398171",
90
133
  "core": false,
91
134
  "unlocked_by": null,
92
- "difficulty": 1,
93
- "topics": []
135
+ "difficulty": 5,
136
+ "topics": [
137
+ "algorithms",
138
+ "arrays",
139
+ "integers",
140
+ "trees"
141
+ ]
94
142
  },
95
143
  {
96
144
  "slug": "nth-prime",
97
145
  "uuid": "df9e580c-3a05-4d6c-b0d0-375df3af4d6c",
98
146
  "core": false,
99
147
  "unlocked_by": null,
100
- "difficulty": 1,
101
- "topics": []
148
+ "difficulty": 4,
149
+ "topics": [
150
+ "arrays",
151
+ "filter",
152
+ "loops",
153
+ "map",
154
+ "mathematics"
155
+ ]
102
156
  },
103
157
  {
104
158
  "slug": "palindrome-products",
105
159
  "uuid": "803690cc-a7cc-4c2f-b767-4c14a399f13a",
106
160
  "core": false,
107
161
  "unlocked_by": null,
108
- "difficulty": 1,
109
- "topics": []
162
+ "difficulty": 2,
163
+ "topics": [
164
+ "arrays",
165
+ "integers",
166
+ "mathematics"
167
+ ]
110
168
  },
111
169
  {
112
170
  "slug": "queen-attack",
@@ -114,63 +172,102 @@
114
172
  "core": false,
115
173
  "unlocked_by": null,
116
174
  "difficulty": 1,
117
- "topics": []
175
+ "topics": [
176
+ "algorithms",
177
+ "arrays",
178
+ "games",
179
+ "logic"
180
+ ]
118
181
  },
119
182
  {
120
183
  "slug": "wordy",
121
184
  "uuid": "86826aa0-f4b0-444c-a5c9-287a6590027e",
122
185
  "core": false,
123
186
  "unlocked_by": null,
124
- "difficulty": 1,
125
- "topics": []
187
+ "difficulty": 4,
188
+ "topics": [
189
+ "integers",
190
+ "mathematics",
191
+ "pattern_recognition",
192
+ "regular_expressions",
193
+ "strings"
194
+ ]
126
195
  },
127
196
  {
128
197
  "slug": "clock",
129
198
  "uuid": "4b3977e2-0e32-49ac-b3df-5c1d2600c079",
130
199
  "core": false,
131
200
  "unlocked_by": null,
132
- "difficulty": 1,
133
- "topics": []
201
+ "difficulty": 3,
202
+ "topics": [
203
+ "integers",
204
+ "loops",
205
+ "mathematics",
206
+ "text_formatting"
207
+ ]
134
208
  },
135
209
  {
136
210
  "slug": "beer-song",
137
211
  "uuid": "3256e251-89ab-4a48-91a4-b4d314b77bec",
138
212
  "core": false,
139
213
  "unlocked_by": null,
140
- "difficulty": 1,
141
- "topics": []
214
+ "difficulty": 2,
215
+ "topics": [
216
+ "control_flow_switch",
217
+ "loops",
218
+ "text_formatting"
219
+ ]
142
220
  },
143
221
  {
144
222
  "slug": "atbash-cipher",
145
223
  "uuid": "a38d0644-42b5-4f01-b110-b723be1fa8a1",
146
224
  "core": false,
147
225
  "unlocked_by": null,
148
- "difficulty": 1,
149
- "topics": []
226
+ "difficulty": 5,
227
+ "topics": [
228
+ "arrays",
229
+ "cryptography",
230
+ "strings",
231
+ "text_formatting"
232
+ ]
150
233
  },
151
234
  {
152
235
  "slug": "linked-list",
153
236
  "uuid": "34661cc2-6d88-4e36-8c3e-87744be307ef",
154
237
  "core": false,
155
238
  "unlocked_by": null,
156
- "difficulty": 1,
157
- "topics": []
239
+ "difficulty": 3,
240
+ "topics": [
241
+ "algorithms",
242
+ "classes",
243
+ "object_oriented_programming",
244
+ "variables"
245
+ ]
158
246
  },
159
247
  {
160
248
  "slug": "pascals-triangle",
161
249
  "uuid": "ee80988f-f1df-4958-b164-0e7fba9d1305",
162
250
  "core": false,
163
251
  "unlocked_by": null,
164
- "difficulty": 1,
165
- "topics": []
252
+ "difficulty": 2,
253
+ "topics": [
254
+ "algorithms",
255
+ "arrays",
256
+ "integers",
257
+ "mathematics"
258
+ ]
166
259
  },
167
260
  {
168
261
  "slug": "nucleotide-count",
169
262
  "uuid": "6952588f-22fb-493e-b252-d62c404ad9ca",
170
263
  "core": false,
171
264
  "unlocked_by": null,
172
- "difficulty": 1,
173
- "topics": []
265
+ "difficulty": 2,
266
+ "topics": [
267
+ "filtering",
268
+ "maps",
269
+ "strings"
270
+ ]
174
271
  }
175
272
  ]
176
273
  }
@@ -1,9 +1,5 @@
1
- JavaScript is a great language, but not everyone likes writing in it. Thus, people and organizations have started to write languages that transpile (transpiling keeps the same level of abstraction, compiling decreases the level of abstraction) into JavaScript, that they feel are nicer to write in than JavaScript. CoffeeScript is one example, another is Microsoft's TypeScript.
1
+ CoffeeScript is a language which transpiles into JavaScript, used for making dynamic websites (both in the web browser, and on the server). The transpiler is used to transform CoffeeScript code into JavaScript before running, to keep compability and the same performance of JavaScript while providing many new features!
2
2
 
3
- CoffeeScript is a little language that compiles into JavaScript. Underneath that awkward Java-esque patina, JavaScript has always had a gorgeous heart. CoffeeScript is an attempt to expose the good parts of JavaScript in a simple way.
3
+ CoffeeScript was created to provide a simplified way to write JavaScript, based on a blend of the Ruby and Python languages. One difference is the use of indentation and arrows to replace JavaScript's verbose function code, and introduces useful features from functional languages including pattern matching.
4
4
 
5
- The golden rule of CoffeeScript is: "It's just JavaScript". The code compiles one-to-one into the equivalent JS, and there is no interpretation at runtime. You can use any existing JavaScript library seamlessly from CoffeeScript (and vice-versa). The compiled output is readable and pretty-printed, will work in every JavaScript runtime, and tends to run as fast or faster than the equivalent handwritten JavaScript.
6
-
7
- You should learn CoffeeScript if you like programming in JavaScript, and want to experiment with a different way to write it. With transpiled versions of JavaScript (ECMA 2015, TypeScript, etc) becoming more popular, this is a valuable skill for a coder.
8
-
9
- _(Info taken from [coffeescript.org](http://www.coffeescript.org))_
5
+ CoffeeScript is one of many new languages that transpiles to JavaScript, including TypeScript and Flow - the community is growing, and these types of languages are very popular.
@@ -8,6 +8,7 @@
8
8
  "slug": "hello-world",
9
9
  "uuid": "a001fd68-5913-4041-80ea-0558b269ba4f",
10
10
  "core": false,
11
+ "auto_approve": true,
11
12
  "unlocked_by": null,
12
13
  "difficulty": 1,
13
14
  "topics": []
@@ -9,6 +9,7 @@
9
9
  "slug": "hello-world",
10
10
  "uuid": "a91c2216-9331-4485-ae4b-190ee9e2a7f8",
11
11
  "core": false,
12
+ "auto_approve": true,
12
13
  "unlocked_by": null,
13
14
  "difficulty": 1,
14
15
  "topics": [
@@ -8,6 +8,7 @@
8
8
  "slug": "hello-world",
9
9
  "uuid": "6b868b7b-cac4-41ff-a855-21f596637845",
10
10
  "core": true,
11
+ "auto_approve": true,
11
12
  "unlocked_by": null,
12
13
  "difficulty": 1,
13
14
  "topics": [
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "language": "Elixir",
3
3
  "active": true,
4
- "blurb": "",
4
+ "blurb": "Elixir is a dynamic, functional language designed for building scalable and maintainable applications. Elixir leverages the Erlang VM, known for running low-latency, distributed and fault-tolerant systems, while also being successfully used in web development and the embedded software domain.",
5
5
  "foregone": [
6
6
  "robot-name"
7
7
  ],
@@ -9,8 +9,9 @@
9
9
  {
10
10
  "slug": "hello-world",
11
11
  "uuid": "cc96d65d-1c79-40d0-8fd2-9a6665a43b01",
12
- "core": false,
12
+ "core": true,
13
13
  "unlocked_by": null,
14
+ "auto_approve": true,
14
15
  "difficulty": 1,
15
16
  "topics": [
16
17
  "strings"
@@ -94,7 +95,7 @@
94
95
  {
95
96
  "slug": "bob",
96
97
  "uuid": "d20b49dc-cb6d-45fc-a168-78d002072c75",
97
- "core": false,
98
+ "core": true,
98
99
  "unlocked_by": null,
99
100
  "difficulty": 2,
100
101
  "topics": [
@@ -117,7 +118,7 @@
117
118
  {
118
119
  "slug": "word-count",
119
120
  "uuid": "4a24ba2f-ae92-4095-be53-64bc881422ea",
120
- "core": false,
121
+ "core": true,
121
122
  "unlocked_by": null,
122
123
  "difficulty": 2,
123
124
  "topics": [
@@ -246,7 +247,7 @@
246
247
  {
247
248
  "slug": "rna-transcription",
248
249
  "uuid": "a4629a60-752f-4234-99f1-6b3ac0b4ba18",
249
- "core": false,
250
+ "core": true,
250
251
  "unlocked_by": null,
251
252
  "difficulty": 2,
252
253
  "topics": null
@@ -270,7 +271,7 @@
270
271
  {
271
272
  "slug": "roman-numerals",
272
273
  "uuid": "4c0ece49-5710-43a1-88b3-2fb149de8552",
273
- "core": false,
274
+ "core": true,
274
275
  "unlocked_by": null,
275
276
  "difficulty": 2,
276
277
  "topics": null
@@ -302,7 +303,7 @@
302
303
  {
303
304
  "slug": "beer-song",
304
305
  "uuid": "24db624b-7c80-409d-97d5-e1177f025c67",
305
- "core": false,
306
+ "core": true,
306
307
  "unlocked_by": null,
307
308
  "difficulty": 3,
308
309
  "topics": null
@@ -338,7 +339,7 @@
338
339
  {
339
340
  "slug": "list-ops",
340
341
  "uuid": "86658a31-d401-401b-80df-2c4df35f9b15",
341
- "core": false,
342
+ "core": true,
342
343
  "unlocked_by": null,
343
344
  "difficulty": 4,
344
345
  "topics": null
@@ -437,7 +438,7 @@
437
438
  {
438
439
  "slug": "markdown",
439
440
  "uuid": "5dfa24bf-e77c-47c6-88e1-e50cbeecd159",
440
- "core": false,
441
+ "core": true,
441
442
  "unlocked_by": null,
442
443
  "difficulty": 5,
443
444
  "topics": null
@@ -493,7 +494,7 @@
493
494
  {
494
495
  "slug": "binary-search",
495
496
  "uuid": "89204af8-3914-404b-8984-39a8d60362c4",
496
- "core": false,
497
+ "core": true,
497
498
  "unlocked_by": null,
498
499
  "difficulty": 3,
499
500
  "topics": null
@@ -554,7 +555,7 @@
554
555
  {
555
556
  "slug": "robot-simulator",
556
557
  "uuid": "e5e55560-852f-4551-b4da-c9f4a3141470",
557
- "core": false,
558
+ "core": true,
558
559
  "unlocked_by": null,
559
560
  "difficulty": 6,
560
561
  "topics": null
@@ -581,7 +582,7 @@
581
582
  {
582
583
  "slug": "bank-account",
583
584
  "uuid": "5d5e0f6c-f4b7-418e-88f8-4b1d0f99bfb0",
584
- "core": false,
585
+ "core": true,
585
586
  "unlocked_by": null,
586
587
  "difficulty": 7,
587
588
  "topics": null
@@ -637,7 +638,7 @@
637
638
  {
638
639
  "slug": "zipper",
639
640
  "uuid": "bc315734-051c-4735-9a8a-3aacb094d2ca",
640
- "core": false,
641
+ "core": true,
641
642
  "unlocked_by": null,
642
643
  "difficulty": 8,
643
644
  "topics": null
@@ -679,7 +680,7 @@
679
680
  {
680
681
  "slug": "bowling",
681
682
  "uuid": "3b252cc6-cc55-4187-891e-c10aaabac81f",
682
- "core": false,
683
+ "core": true,
683
684
  "unlocked_by": null,
684
685
  "difficulty": 8,
685
686
  "topics": null
@@ -703,7 +704,7 @@
703
704
  {
704
705
  "slug": "forth",
705
706
  "uuid": "2abfa3e5-d358-4a07-91f9-d4ad04eb719d",
706
- "core": false,
707
+ "core": true,
707
708
  "unlocked_by": null,
708
709
  "difficulty": 10,
709
710
  "topics": null
@@ -711,7 +712,7 @@
711
712
  {
712
713
  "slug": "clock",
713
714
  "uuid": "e7cb9cd0-5893-4ebb-b801-f5d548945531",
714
- "core": false,
715
+ "core": true,
715
716
  "unlocked_by": null,
716
717
  "difficulty": 5,
717
718
  "topics": [