trackler 2.2.1.54 → 2.2.1.55

Sign up to get free protection for your applications and to get access to all the features.
Files changed (280) hide show
  1. checksums.yaml +4 -4
  2. data/lib/trackler/version.rb +1 -1
  3. data/problem-specifications/exercises/dominoes/description.md +3 -3
  4. data/problem-specifications/exercises/two-fer/description.md +0 -28
  5. data/tracks/c/config.json +12 -0
  6. data/tracks/c/exercises/queen-attack/README.md +65 -0
  7. data/tracks/c/exercises/queen-attack/makefile +15 -0
  8. data/tracks/c/exercises/queen-attack/src/example.c +25 -0
  9. data/tracks/c/exercises/queen-attack/src/queen_attack.h +19 -0
  10. data/tracks/c/exercises/queen-attack/test/test_queen_attack.c +190 -0
  11. data/tracks/c/exercises/queen-attack/test/vendor/unity.c +1300 -0
  12. data/tracks/c/exercises/queen-attack/test/vendor/unity.h +274 -0
  13. data/tracks/c/exercises/queen-attack/test/vendor/unity_internals.h +701 -0
  14. data/tracks/common-lisp/exercises/acronym/README.md +1 -1
  15. data/tracks/delphi/exercises/two-fer/README.md +0 -28
  16. data/tracks/ecmascript/config.json +41 -0
  17. data/tracks/ecmascript/exercises/accumulate/package.json +5 -3
  18. data/tracks/ecmascript/exercises/acronym/package.json +5 -3
  19. data/tracks/ecmascript/exercises/all-your-base/package.json +5 -3
  20. data/tracks/ecmascript/exercises/allergies/package.json +5 -3
  21. data/tracks/ecmascript/exercises/alphametics/package.json +5 -3
  22. data/tracks/ecmascript/exercises/anagram/package.json +5 -3
  23. data/tracks/ecmascript/exercises/atbash-cipher/package.json +5 -3
  24. data/tracks/ecmascript/exercises/beer-song/package.json +5 -3
  25. data/tracks/ecmascript/exercises/binary-search-tree/package.json +5 -3
  26. data/tracks/ecmascript/exercises/binary-search/package.json +5 -3
  27. data/tracks/ecmascript/exercises/binary/package.json +5 -3
  28. data/tracks/ecmascript/exercises/bob/package.json +5 -3
  29. data/tracks/ecmascript/exercises/bowling/package.json +2 -2
  30. data/tracks/ecmascript/exercises/bracket-push/package.json +5 -3
  31. data/tracks/ecmascript/exercises/change/README.md +44 -0
  32. data/tracks/ecmascript/exercises/change/change.spec.js +80 -0
  33. data/tracks/ecmascript/exercises/change/example.js +120 -0
  34. data/tracks/ecmascript/exercises/change/package.json +69 -0
  35. data/tracks/ecmascript/exercises/circular-buffer/package.json +5 -3
  36. data/tracks/ecmascript/exercises/clock/package.json +5 -3
  37. data/tracks/ecmascript/exercises/collatz-conjecture/package.json +6 -4
  38. data/tracks/ecmascript/exercises/connect/package.json +5 -3
  39. data/tracks/ecmascript/exercises/crypto-square/package.json +5 -3
  40. data/tracks/ecmascript/exercises/custom-set/package.json +5 -3
  41. data/tracks/ecmascript/exercises/diamond/package.json +5 -3
  42. data/tracks/ecmascript/exercises/difference-of-squares/package.json +5 -3
  43. data/tracks/ecmascript/exercises/diffie-hellman/package.json +5 -3
  44. data/tracks/ecmascript/exercises/etl/package.json +5 -3
  45. data/tracks/ecmascript/exercises/flatten-array/package.json +5 -3
  46. data/tracks/ecmascript/exercises/food-chain/package.json +5 -3
  47. data/tracks/ecmascript/exercises/gigasecond/package.json +5 -3
  48. data/tracks/ecmascript/exercises/grade-school/package.json +5 -3
  49. data/tracks/ecmascript/exercises/grains/package.json +5 -3
  50. data/tracks/ecmascript/exercises/hamming/package.json +5 -3
  51. data/tracks/ecmascript/exercises/hello-world/package.json +5 -3
  52. data/tracks/ecmascript/exercises/hexadecimal/package.json +5 -3
  53. data/tracks/ecmascript/exercises/isbn-verifier/README.md +62 -0
  54. data/tracks/ecmascript/exercises/isbn-verifier/example.js +17 -0
  55. data/tracks/ecmascript/exercises/isbn-verifier/isbn-verifier.spec.js +81 -0
  56. data/tracks/ecmascript/exercises/isbn-verifier/package.json +71 -0
  57. data/tracks/ecmascript/exercises/isogram/package.json +5 -3
  58. data/tracks/ecmascript/exercises/kindergarten-garden/package.json +5 -3
  59. data/tracks/ecmascript/exercises/largest-series-product/package.json +5 -3
  60. data/tracks/ecmascript/exercises/leap/package.json +5 -3
  61. data/tracks/ecmascript/exercises/linked-list/package.json +5 -3
  62. data/tracks/ecmascript/exercises/list-ops/package.json +5 -3
  63. data/tracks/ecmascript/exercises/luhn/package.json +5 -3
  64. data/tracks/ecmascript/exercises/matrix/package.json +5 -3
  65. data/tracks/ecmascript/exercises/meetup/package.json +5 -3
  66. data/tracks/ecmascript/exercises/minesweeper/package.json +5 -3
  67. data/tracks/ecmascript/exercises/nth-prime/package.json +5 -3
  68. data/tracks/ecmascript/exercises/ocr-numbers/package.json +5 -3
  69. data/tracks/ecmascript/exercises/octal/package.json +5 -3
  70. data/tracks/ecmascript/exercises/palindrome-products/package.json +5 -3
  71. data/tracks/ecmascript/exercises/pangram/package.json +5 -3
  72. data/tracks/ecmascript/exercises/pascals-triangle/package.json +5 -3
  73. data/tracks/ecmascript/exercises/perfect-numbers/package.json +5 -3
  74. data/tracks/ecmascript/exercises/phone-number/package.json +5 -3
  75. data/tracks/ecmascript/exercises/pig-latin/package.json +5 -3
  76. data/tracks/ecmascript/exercises/prime-factors/package.json +5 -3
  77. data/tracks/ecmascript/exercises/proverb/package.json +5 -3
  78. data/tracks/ecmascript/exercises/pythagorean-triplet/package.json +5 -3
  79. data/tracks/ecmascript/exercises/queen-attack/package.json +5 -3
  80. data/tracks/ecmascript/exercises/raindrops/package.json +5 -3
  81. data/tracks/ecmascript/exercises/rna-transcription/package.json +5 -3
  82. data/tracks/ecmascript/exercises/robot-name/package.json +5 -3
  83. data/tracks/ecmascript/exercises/robot-simulator/package.json +5 -3
  84. data/tracks/ecmascript/exercises/roman-numerals/package.json +5 -3
  85. data/tracks/ecmascript/exercises/run-length-encoding/package.json +5 -3
  86. data/tracks/ecmascript/exercises/saddle-points/package.json +5 -3
  87. data/tracks/ecmascript/exercises/say/package.json +5 -3
  88. data/tracks/ecmascript/exercises/scrabble-score/package.json +5 -3
  89. data/tracks/ecmascript/exercises/secret-handshake/package.json +5 -3
  90. data/tracks/ecmascript/exercises/series/package.json +5 -3
  91. data/tracks/ecmascript/exercises/sieve/package.json +5 -3
  92. data/tracks/ecmascript/exercises/simple-cipher/package.json +5 -3
  93. data/tracks/ecmascript/exercises/simple-linked-list/package.json +5 -3
  94. data/tracks/ecmascript/exercises/space-age/package.json +5 -3
  95. data/tracks/ecmascript/exercises/strain/package.json +5 -3
  96. data/tracks/ecmascript/exercises/sublist/package.json +5 -3
  97. data/tracks/ecmascript/exercises/sum-of-multiples/package.json +5 -3
  98. data/tracks/ecmascript/exercises/transpose/README.md +94 -0
  99. data/tracks/ecmascript/exercises/transpose/example.js +12 -0
  100. data/tracks/ecmascript/exercises/transpose/package.json +71 -0
  101. data/tracks/ecmascript/exercises/transpose/transpose.spec.js +67 -0
  102. data/tracks/ecmascript/exercises/triangle/package.json +5 -3
  103. data/tracks/ecmascript/exercises/trinary/package.json +5 -3
  104. data/tracks/ecmascript/exercises/twelve-days/package.json +5 -3
  105. data/tracks/ecmascript/exercises/two-bucket/package.json +5 -3
  106. data/tracks/ecmascript/exercises/two-fer/package.json +5 -3
  107. data/tracks/ecmascript/exercises/word-count/package.json +5 -3
  108. data/tracks/ecmascript/exercises/word-search/package.json +5 -3
  109. data/tracks/ecmascript/exercises/wordy/package.json +5 -3
  110. data/tracks/ecmascript/package-lock.json +6219 -0
  111. data/tracks/ecmascript/package.json +5 -3
  112. data/tracks/erlang/exercises/collatz-conjecture/src/collatz_conjecture.erl +3 -4
  113. data/tracks/erlang/exercises/collatz-conjecture/src/example.erl +3 -3
  114. data/tracks/erlang/exercises/collatz-conjecture/test/collatz_conjecture_tests.erl +13 -9
  115. data/tracks/erlang/exercises/hello-world/src/hello_world.erl +2 -2
  116. data/tracks/erlang/exercises/leap/src/example.erl +1 -1
  117. data/tracks/erlang/exercises/leap/src/leap.erl +3 -3
  118. data/tracks/erlang/exercises/leap/test/leap_tests.erl +9 -9
  119. data/tracks/erlang/testgen/src/testgen.erl +16 -13
  120. data/tracks/erlang/testgen/src/tgen.erl +65 -38
  121. data/tracks/erlang/testgen/src/tgen_collatz-conjecture.erl +38 -0
  122. data/tracks/erlang/testgen/src/tgen_hello-world.erl +11 -19
  123. data/tracks/erlang/testgen/src/tgen_leap.erl +31 -0
  124. data/tracks/erlang/testgen/src/tgs.erl +80 -0
  125. data/tracks/fsharp/exercises/alphametics/AlphameticsTest.fs +78 -23
  126. data/tracks/fsharp/exercises/anagram/AnagramTest.fs +66 -34
  127. data/tracks/fsharp/exercises/connect/ConnectTest.fs +81 -68
  128. data/tracks/fsharp/exercises/connect/Example.fs +9 -5
  129. data/tracks/fsharp/exercises/food-chain/Example.fs +5 -9
  130. data/tracks/fsharp/exercises/food-chain/FoodChain.fs +2 -2
  131. data/tracks/fsharp/exercises/food-chain/FoodChainTest.fs +143 -75
  132. data/tracks/fsharp/exercises/hamming/Example.fs +8 -4
  133. data/tracks/fsharp/exercises/hamming/Hamming.fs +1 -1
  134. data/tracks/fsharp/exercises/hamming/HammingTest.fs +53 -13
  135. data/tracks/fsharp/exercises/house/Example.fs +5 -6
  136. data/tracks/fsharp/exercises/house/House.fs +3 -1
  137. data/tracks/fsharp/exercises/house/HouseTest.fs +272 -96
  138. data/tracks/fsharp/exercises/meetup/Example.fs +1 -1
  139. data/tracks/fsharp/exercises/meetup/Meetup.fs +1 -1
  140. data/tracks/fsharp/exercises/meetup/MeetupTest.fs +384 -73
  141. data/tracks/fsharp/exercises/ocr-numbers/Example.fs +43 -35
  142. data/tracks/fsharp/exercises/ocr-numbers/OcrNumbersTest.fs +160 -125
  143. data/tracks/fsharp/exercises/two-fer/Example.fs +4 -2
  144. data/tracks/fsharp/exercises/two-fer/TwoFer.fs +1 -1
  145. data/tracks/fsharp/exercises/two-fer/TwoFerTest.fs +7 -4
  146. data/tracks/fsharp/generators/Common.fs +6 -2
  147. data/tracks/fsharp/generators/Exercise.fs +14 -13
  148. data/tracks/fsharp/generators/Generators.fs +145 -2
  149. data/tracks/fsharp/generators/Options.fs +4 -6
  150. data/tracks/fsharp/generators/Output.fs +2 -2
  151. data/tracks/fsharp/generators/Program.fs +4 -3
  152. data/tracks/java/exercises/saddle-points/README.md +1 -1
  153. data/tracks/java/exercises/two-fer/README.md +0 -28
  154. data/tracks/javascript/exercises/beer-song/example.js +18 -14
  155. data/tracks/kotlin/exercises/saddle-points/README.md +1 -1
  156. data/tracks/kotlin/exercises/two-fer/README.md +0 -28
  157. data/tracks/lua/config.json +12 -0
  158. data/tracks/lua/exercises/collatz-conjecture/README.md +43 -0
  159. data/tracks/lua/exercises/collatz-conjecture/collatz-conjecture_spec.lua +33 -0
  160. data/tracks/lua/exercises/collatz-conjecture/example.lua +16 -0
  161. data/tracks/python/config.json +4 -1
  162. data/tracks/python/exercises/binary-search/binary_search_test.py +2 -0
  163. data/tracks/python/exercises/change/change_test.py +2 -0
  164. data/tracks/python/exercises/circular-buffer/circular_buffer_test.py +56 -50
  165. data/tracks/python/exercises/forth/example.py +3 -1
  166. data/tracks/python/exercises/forth/forth_test.py +43 -26
  167. data/tracks/python/exercises/nth-prime/nth_prime.py +1 -1
  168. data/tracks/python/exercises/rna-transcription/README.md +5 -0
  169. data/tracks/python/exercises/rna-transcription/example.py +1 -1
  170. data/tracks/python/exercises/rna-transcription/rna_transcription_test.py +7 -4
  171. data/tracks/python/exercises/robot-simulator/robot_simulator_test.py +9 -7
  172. data/tracks/python/exercises/saddle-points/saddle_points_test.py +15 -5
  173. data/tracks/python/exercises/simple-cipher/simple_cipher.py +7 -1
  174. data/tracks/python/exercises/word-count/example.py +6 -4
  175. data/tracks/python/exercises/word-count/word_count_test.py +49 -22
  176. data/tracks/python/exercises/word-search/word_search_test.py +104 -12
  177. data/tracks/rust/.travis.yml +2 -0
  178. data/tracks/rust/README.md +5 -0
  179. data/tracks/rust/_test/check-exercises.sh +0 -6
  180. data/tracks/rust/_test/ensure-lib-src-rs-exist.sh +19 -0
  181. data/tracks/rust/_test/ensure-stubs-compile.sh +26 -0
  182. data/tracks/rust/config.json +12 -0
  183. data/tracks/rust/config/exercise-readme-insert.md +3 -2
  184. data/tracks/rust/docs/ABOUT.md +2 -2
  185. data/tracks/rust/docs/LEARNING.md +1 -1
  186. data/tracks/rust/docs/RESOURCES.md +1 -1
  187. data/tracks/rust/docs/TESTS.md +2 -2
  188. data/tracks/rust/exercises/accumulate/README.md +3 -2
  189. data/tracks/rust/exercises/acronym/README.md +3 -2
  190. data/tracks/rust/exercises/all-your-base/README.md +3 -2
  191. data/tracks/rust/exercises/allergies/README.md +3 -2
  192. data/tracks/rust/exercises/alphametics/README.md +3 -2
  193. data/tracks/rust/exercises/anagram/README.md +3 -2
  194. data/tracks/rust/exercises/atbash-cipher/README.md +3 -2
  195. data/tracks/rust/exercises/beer-song/README.md +3 -2
  196. data/tracks/rust/exercises/beer-song/src/lib.rs +2 -2
  197. data/tracks/rust/exercises/binary-search/README.md +3 -2
  198. data/tracks/rust/exercises/bob/README.md +3 -2
  199. data/tracks/rust/exercises/bob/src/lib.rs +1 -1
  200. data/tracks/rust/exercises/bowling/README.md +3 -2
  201. data/tracks/rust/exercises/bracket-push/HINTS.md +1 -1
  202. data/tracks/rust/exercises/bracket-push/README.md +4 -3
  203. data/tracks/rust/exercises/circular-buffer/README.md +3 -2
  204. data/tracks/rust/exercises/clock/README.md +3 -2
  205. data/tracks/rust/exercises/collatz-conjecture/README.md +3 -2
  206. data/tracks/rust/exercises/collatz-conjecture/src/lib.rs +1 -1
  207. data/tracks/rust/exercises/crypto-square/README.md +3 -2
  208. data/tracks/rust/exercises/custom-set/README.md +3 -2
  209. data/tracks/rust/exercises/decimal/.meta/ALLOWED_TO_NOT_COMPILE +2 -0
  210. data/tracks/rust/exercises/decimal/README.md +3 -2
  211. data/tracks/rust/exercises/difference-of-squares/README.md +3 -2
  212. data/tracks/rust/exercises/difference-of-squares/src/lib.rs +3 -3
  213. data/tracks/rust/exercises/dominoes/README.md +3 -2
  214. data/tracks/rust/exercises/etl/README.md +3 -2
  215. data/tracks/rust/exercises/forth/README.md +3 -2
  216. data/tracks/rust/exercises/forth/src/lib.rs +3 -0
  217. data/tracks/rust/exercises/gigasecond/README.md +3 -2
  218. data/tracks/rust/exercises/grade-school/README.md +3 -2
  219. data/tracks/rust/exercises/grains/README.md +3 -2
  220. data/tracks/rust/exercises/hamming/README.md +3 -2
  221. data/tracks/rust/exercises/hello-world/GETTING_STARTED.md +1 -1
  222. data/tracks/rust/exercises/hello-world/README.md +3 -2
  223. data/tracks/rust/exercises/hexadecimal/README.md +3 -2
  224. data/tracks/rust/exercises/isogram/.gitignore +8 -0
  225. data/tracks/rust/exercises/isogram/Cargo.toml +3 -0
  226. data/tracks/rust/exercises/isogram/README.md +52 -0
  227. data/tracks/rust/exercises/isogram/example.rs +12 -0
  228. data/tracks/rust/exercises/isogram/src/lib.rs +0 -0
  229. data/tracks/rust/exercises/isogram/tests/isogram.rs +72 -0
  230. data/tracks/rust/exercises/largest-series-product/README.md +3 -2
  231. data/tracks/rust/exercises/leap/README.md +3 -2
  232. data/tracks/rust/exercises/leap/src/lib.rs +1 -1
  233. data/tracks/rust/exercises/luhn-from/README.md +3 -2
  234. data/tracks/rust/exercises/luhn-trait/.meta/description.md +2 -2
  235. data/tracks/rust/exercises/luhn-trait/README.md +5 -4
  236. data/tracks/rust/exercises/luhn/README.md +3 -2
  237. data/tracks/rust/exercises/minesweeper/README.md +3 -2
  238. data/tracks/rust/exercises/nth-prime/README.md +3 -2
  239. data/tracks/rust/exercises/nucleotide-codons/README.md +3 -2
  240. data/tracks/rust/exercises/nucleotide-count/README.md +3 -2
  241. data/tracks/rust/exercises/ocr-numbers/README.md +3 -2
  242. data/tracks/rust/exercises/pangram/README.md +3 -2
  243. data/tracks/rust/exercises/parallel-letter-frequency/HINTS.md +1 -1
  244. data/tracks/rust/exercises/parallel-letter-frequency/README.md +4 -3
  245. data/tracks/rust/exercises/pascals-triangle/README.md +3 -2
  246. data/tracks/rust/exercises/perfect-numbers/README.md +3 -2
  247. data/tracks/rust/exercises/phone-number/README.md +3 -2
  248. data/tracks/rust/exercises/pig-latin/README.md +3 -2
  249. data/tracks/rust/exercises/poker/README.md +3 -2
  250. data/tracks/rust/exercises/prime-factors/README.md +3 -2
  251. data/tracks/rust/exercises/protein-translation/README.md +3 -2
  252. data/tracks/rust/exercises/proverb/README.md +3 -2
  253. data/tracks/rust/exercises/proverb/src/lib.rs +1 -1
  254. data/tracks/rust/exercises/pythagorean-triplet/README.md +3 -2
  255. data/tracks/rust/exercises/queen-attack/README.md +3 -2
  256. data/tracks/rust/exercises/raindrops/README.md +3 -2
  257. data/tracks/rust/exercises/raindrops/src/lib.rs +1 -1
  258. data/tracks/rust/exercises/react/README.md +3 -2
  259. data/tracks/rust/exercises/rectangles/README.md +3 -2
  260. data/tracks/rust/exercises/rna-transcription/README.md +3 -2
  261. data/tracks/rust/exercises/robot-name/README.md +3 -2
  262. data/tracks/rust/exercises/robot-simulator/README.md +3 -2
  263. data/tracks/rust/exercises/roman-numerals/README.md +3 -2
  264. data/tracks/rust/exercises/rotational-cipher/README.md +3 -2
  265. data/tracks/rust/exercises/run-length-encoding/README.md +3 -2
  266. data/tracks/rust/exercises/say/README.md +3 -2
  267. data/tracks/rust/exercises/scrabble-score/README.md +3 -2
  268. data/tracks/rust/exercises/sieve/README.md +3 -2
  269. data/tracks/rust/exercises/space-age/README.md +3 -2
  270. data/tracks/rust/exercises/sublist/README.md +3 -2
  271. data/tracks/rust/exercises/sum-of-multiples/README.md +3 -2
  272. data/tracks/rust/exercises/sum-of-multiples/src/lib.rs +1 -1
  273. data/tracks/rust/exercises/tournament/README.md +3 -2
  274. data/tracks/rust/exercises/triangle/HINTS.md +2 -2
  275. data/tracks/rust/exercises/triangle/README.md +5 -4
  276. data/tracks/rust/exercises/variable-length-quantity/README.md +3 -2
  277. data/tracks/rust/exercises/word-count/README.md +3 -2
  278. data/tracks/rust/exercises/wordy/README.md +3 -2
  279. metadata +38 -3
  280. data/tracks/ecmascript/yarn.lock +0 -3144
@@ -40,7 +40,7 @@ to pass again. The test file is located in the `tests` directory. You can
40
40
  also remove the ignore flag from all the tests to get them to run all at once
41
41
  if you wish.
42
42
 
43
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
43
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
44
44
  haven't already, it will help you with organizing your files.
45
45
 
46
46
  ## Feedback, Issues, Pull Requests
@@ -50,7 +50,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
50
50
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
51
51
 
52
52
  [help-page]: http://exercism.io/languages/rust
53
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
53
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
54
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
54
55
 
55
56
  ## Source
56
57
 
@@ -45,7 +45,7 @@ to pass again. The test file is located in the `tests` directory. You can
45
45
  also remove the ignore flag from all the tests to get them to run all at once
46
46
  if you wish.
47
47
 
48
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
48
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
49
49
  haven't already, it will help you with organizing your files.
50
50
 
51
51
  ## Feedback, Issues, Pull Requests
@@ -55,7 +55,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
55
55
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
56
56
 
57
57
  [help-page]: http://exercism.io/languages/rust
58
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
58
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
59
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
59
60
 
60
61
  ## Source
61
62
 
@@ -1,3 +1,3 @@
1
1
  pub fn is_leap_year(year: i32) -> bool {
2
-
2
+ unimplemented!()
3
3
  }
@@ -29,7 +29,7 @@ to pass again. The test file is located in the `tests` directory. You can
29
29
  also remove the ignore flag from all the tests to get them to run all at once
30
30
  if you wish.
31
31
 
32
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
32
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
33
33
  haven't already, it will help you with organizing your files.
34
34
 
35
35
  ## Feedback, Issues, Pull Requests
@@ -39,7 +39,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
39
39
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
40
40
 
41
41
  [help-page]: http://exercism.io/languages/rust
42
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
42
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
43
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
43
44
 
44
45
  ## Source
45
46
 
@@ -12,6 +12,6 @@ In "Luhn: Using the From Trait" you implemented a From trait, which also require
12
12
 
13
13
  Instead of creating a Struct just to perform the validation, what if you you validated the primitives (i.e, String, u8, etc.) themselves?
14
14
 
15
- In this exercise you'll create and implement a custom [trait](https://doc.rust-lang.org/book/traits.html) that performs the validation.
15
+ In this exercise you'll create and implement a custom [trait](https://doc.rust-lang.org/book/second-edition/ch10-02-traits.html) that performs the validation.
16
16
 
17
- Note: It is [not idiomatic Rust to implement traits on on primitives](https://doc.rust-lang.org/book/traits.html#rules-for-implementing-traits). In this exercise we're showing something that you _can_ do, not something you _should_ do. If you find yourself implementing traits on primitives, perhaps you have a case of [Primitive Obsession](http://wiki.c2.com/?PrimitiveObsession).
17
+ Note: It is [not idiomatic Rust to implement traits on on primitives](https://doc.rust-lang.org/book/second-edition/ch10-02-traits.html#implementing-a-trait-on-a-type). In this exercise we're showing something that you _can_ do, not something you _should_ do. If you find yourself implementing traits on primitives, perhaps you have a case of [Primitive Obsession](http://wiki.c2.com/?PrimitiveObsession).
@@ -14,9 +14,9 @@ In "Luhn: Using the From Trait" you implemented a From trait, which also require
14
14
 
15
15
  Instead of creating a Struct just to perform the validation, what if you you validated the primitives (i.e, String, u8, etc.) themselves?
16
16
 
17
- In this exercise you'll create and implement a custom [trait](https://doc.rust-lang.org/book/traits.html) that performs the validation.
17
+ In this exercise you'll create and implement a custom [trait](https://doc.rust-lang.org/book/second-edition/ch10-02-traits.html) that performs the validation.
18
18
 
19
- Note: It is [not idiomatic Rust to implement traits on on primitives](https://doc.rust-lang.org/book/traits.html#rules-for-implementing-traits). In this exercise we're showing something that you _can_ do, not something you _should_ do. If you find yourself implementing traits on primitives, perhaps you have a case of [Primitive Obsession](http://wiki.c2.com/?PrimitiveObsession).
19
+ Note: It is [not idiomatic Rust to implement traits on on primitives](https://doc.rust-lang.org/book/second-edition/ch10-02-traits.html#implementing-a-trait-on-a-type). In this exercise we're showing something that you _can_ do, not something you _should_ do. If you find yourself implementing traits on primitives, perhaps you have a case of [Primitive Obsession](http://wiki.c2.com/?PrimitiveObsession).
20
20
 
21
21
  ## Rust Installation
22
22
 
@@ -37,7 +37,7 @@ to pass again. The test file is located in the `tests` directory. You can
37
37
  also remove the ignore flag from all the tests to get them to run all at once
38
38
  if you wish.
39
39
 
40
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
40
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
41
41
  haven't already, it will help you with organizing your files.
42
42
 
43
43
  ## Feedback, Issues, Pull Requests
@@ -47,7 +47,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
47
47
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
48
48
 
49
49
  [help-page]: http://exercism.io/languages/rust
50
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
50
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
51
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
51
52
 
52
53
  ## Source
53
54
 
@@ -83,7 +83,7 @@ to pass again. The test file is located in the `tests` directory. You can
83
83
  also remove the ignore flag from all the tests to get them to run all at once
84
84
  if you wish.
85
85
 
86
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
86
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
87
87
  haven't already, it will help you with organizing your files.
88
88
 
89
89
  ## Feedback, Issues, Pull Requests
@@ -93,7 +93,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
93
93
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
94
94
 
95
95
  [help-page]: http://exercism.io/languages/rust
96
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
96
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
97
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
97
98
 
98
99
  ## Source
99
100
 
@@ -45,7 +45,7 @@ to pass again. The test file is located in the `tests` directory. You can
45
45
  also remove the ignore flag from all the tests to get them to run all at once
46
46
  if you wish.
47
47
 
48
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
48
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
49
49
  haven't already, it will help you with organizing your files.
50
50
 
51
51
  ## Feedback, Issues, Pull Requests
@@ -55,7 +55,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
55
55
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
56
56
 
57
57
  [help-page]: http://exercism.io/languages/rust
58
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
58
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
59
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
59
60
 
60
61
 
61
62
  ## Submitting Incomplete Solutions
@@ -27,7 +27,7 @@ to pass again. The test file is located in the `tests` directory. You can
27
27
  also remove the ignore flag from all the tests to get them to run all at once
28
28
  if you wish.
29
29
 
30
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
30
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
31
31
  haven't already, it will help you with organizing your files.
32
32
 
33
33
  ## Feedback, Issues, Pull Requests
@@ -37,7 +37,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
37
37
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
38
38
 
39
39
  [help-page]: http://exercism.io/languages/rust
40
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
40
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
41
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
41
42
 
42
43
  ## Source
43
44
 
@@ -37,7 +37,7 @@ to pass again. The test file is located in the `tests` directory. You can
37
37
  also remove the ignore flag from all the tests to get them to run all at once
38
38
  if you wish.
39
39
 
40
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
40
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
41
41
  haven't already, it will help you with organizing your files.
42
42
 
43
43
  ## Feedback, Issues, Pull Requests
@@ -47,7 +47,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
47
47
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
48
48
 
49
49
  [help-page]: http://exercism.io/languages/rust
50
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
50
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
51
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
51
52
 
52
53
 
53
54
  ## Submitting Incomplete Solutions
@@ -45,7 +45,7 @@ to pass again. The test file is located in the `tests` directory. You can
45
45
  also remove the ignore flag from all the tests to get them to run all at once
46
46
  if you wish.
47
47
 
48
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
48
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
49
49
  haven't already, it will help you with organizing your files.
50
50
 
51
51
  ## Feedback, Issues, Pull Requests
@@ -55,7 +55,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
55
55
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
56
56
 
57
57
  [help-page]: http://exercism.io/languages/rust
58
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
58
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
59
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
59
60
 
60
61
  ## Source
61
62
 
@@ -97,7 +97,7 @@ to pass again. The test file is located in the `tests` directory. You can
97
97
  also remove the ignore flag from all the tests to get them to run all at once
98
98
  if you wish.
99
99
 
100
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
100
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
101
101
  haven't already, it will help you with organizing your files.
102
102
 
103
103
  ## Feedback, Issues, Pull Requests
@@ -107,7 +107,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
107
107
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
108
108
 
109
109
  [help-page]: http://exercism.io/languages/rust
110
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
110
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
111
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
111
112
 
112
113
  ## Source
113
114
 
@@ -27,7 +27,7 @@ to pass again. The test file is located in the `tests` directory. You can
27
27
  also remove the ignore flag from all the tests to get them to run all at once
28
28
  if you wish.
29
29
 
30
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
30
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
31
31
  haven't already, it will help you with organizing your files.
32
32
 
33
33
  ## Feedback, Issues, Pull Requests
@@ -37,7 +37,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
37
37
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
38
38
 
39
39
  [help-page]: http://exercism.io/languages/rust
40
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
40
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
41
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
41
42
 
42
43
  ## Source
43
44
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Learn more about concurrency in Rust here:
4
4
 
5
- - [Concurrency](https://doc.rust-lang.org/book/concurrency.html)
5
+ - [Concurrency](https://doc.rust-lang.org/book/second-edition/ch16-00-concurrency.html)
6
6
 
7
7
  ## Bonus
8
8
 
@@ -11,7 +11,7 @@ list of texts and that employs parallelism.
11
11
 
12
12
  Learn more about concurrency in Rust here:
13
13
 
14
- - [Concurrency](https://doc.rust-lang.org/book/concurrency.html)
14
+ - [Concurrency](https://doc.rust-lang.org/book/second-edition/ch16-00-concurrency.html)
15
15
 
16
16
  ## Bonus
17
17
 
@@ -60,7 +60,7 @@ to pass again. The test file is located in the `tests` directory. You can
60
60
  also remove the ignore flag from all the tests to get them to run all at once
61
61
  if you wish.
62
62
 
63
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
63
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
64
64
  haven't already, it will help you with organizing your files.
65
65
 
66
66
  ## Feedback, Issues, Pull Requests
@@ -70,7 +70,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
70
70
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
71
71
 
72
72
  [help-page]: http://exercism.io/languages/rust
73
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
73
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
74
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
74
75
 
75
76
 
76
77
  ## Submitting Incomplete Solutions
@@ -33,7 +33,7 @@ to pass again. The test file is located in the `tests` directory. You can
33
33
  also remove the ignore flag from all the tests to get them to run all at once
34
34
  if you wish.
35
35
 
36
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
36
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
37
37
  haven't already, it will help you with organizing your files.
38
38
 
39
39
  ## Feedback, Issues, Pull Requests
@@ -43,7 +43,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
43
43
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
44
44
 
45
45
  [help-page]: http://exercism.io/languages/rust
46
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
46
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
47
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
47
48
 
48
49
  ## Source
49
50
 
@@ -36,7 +36,7 @@ to pass again. The test file is located in the `tests` directory. You can
36
36
  also remove the ignore flag from all the tests to get them to run all at once
37
37
  if you wish.
38
38
 
39
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
39
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
40
40
  haven't already, it will help you with organizing your files.
41
41
 
42
42
  ## Feedback, Issues, Pull Requests
@@ -46,7 +46,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
46
46
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
47
47
 
48
48
  [help-page]: http://exercism.io/languages/rust
49
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
49
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
50
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
50
51
 
51
52
  ## Source
52
53
 
@@ -46,7 +46,7 @@ to pass again. The test file is located in the `tests` directory. You can
46
46
  also remove the ignore flag from all the tests to get them to run all at once
47
47
  if you wish.
48
48
 
49
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
49
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
50
50
  haven't already, it will help you with organizing your files.
51
51
 
52
52
  ## Feedback, Issues, Pull Requests
@@ -56,7 +56,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
56
56
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
57
57
 
58
58
  [help-page]: http://exercism.io/languages/rust
59
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
59
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
60
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
60
61
 
61
62
  ## Source
62
63
 
@@ -36,7 +36,7 @@ to pass again. The test file is located in the `tests` directory. You can
36
36
  also remove the ignore flag from all the tests to get them to run all at once
37
37
  if you wish.
38
38
 
39
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
39
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
40
40
  haven't already, it will help you with organizing your files.
41
41
 
42
42
  ## Feedback, Issues, Pull Requests
@@ -46,7 +46,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
46
46
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
47
47
 
48
48
  [help-page]: http://exercism.io/languages/rust
49
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
49
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
50
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
50
51
 
51
52
  ## Source
52
53
 
@@ -34,7 +34,7 @@ to pass again. The test file is located in the `tests` directory. You can
34
34
  also remove the ignore flag from all the tests to get them to run all at once
35
35
  if you wish.
36
36
 
37
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
37
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
38
38
  haven't already, it will help you with organizing your files.
39
39
 
40
40
  ## Feedback, Issues, Pull Requests
@@ -44,7 +44,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
44
44
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
45
45
 
46
46
  [help-page]: http://exercism.io/languages/rust
47
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
47
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
48
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
48
49
 
49
50
  ## Source
50
51
 
@@ -48,7 +48,7 @@ to pass again. The test file is located in the `tests` directory. You can
48
48
  also remove the ignore flag from all the tests to get them to run all at once
49
49
  if you wish.
50
50
 
51
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
51
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
52
52
  haven't already, it will help you with organizing your files.
53
53
 
54
54
  ## Feedback, Issues, Pull Requests
@@ -58,7 +58,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
58
58
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
59
59
 
60
60
  [help-page]: http://exercism.io/languages/rust
61
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
61
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
62
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
62
63
 
63
64
  ## Source
64
65
 
@@ -61,7 +61,7 @@ to pass again. The test file is located in the `tests` directory. You can
61
61
  also remove the ignore flag from all the tests to get them to run all at once
62
62
  if you wish.
63
63
 
64
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
64
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
65
65
  haven't already, it will help you with organizing your files.
66
66
 
67
67
  ## Feedback, Issues, Pull Requests
@@ -71,7 +71,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
71
71
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
72
72
 
73
73
  [help-page]: http://exercism.io/languages/rust
74
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
74
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
75
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
75
76
 
76
77
  ## Source
77
78
 
@@ -30,7 +30,7 @@ to pass again. The test file is located in the `tests` directory. You can
30
30
  also remove the ignore flag from all the tests to get them to run all at once
31
31
  if you wish.
32
32
 
33
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
33
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
34
34
  haven't already, it will help you with organizing your files.
35
35
 
36
36
  ## Feedback, Issues, Pull Requests
@@ -40,7 +40,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
40
40
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
41
41
 
42
42
  [help-page]: http://exercism.io/languages/rust
43
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
43
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
44
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
44
45
 
45
46
  ## Source
46
47
 
@@ -1,3 +1,3 @@
1
1
  pub fn build_proverb(list: Vec<&str>) -> String {
2
-
2
+ unimplemented!()
3
3
  }
@@ -36,7 +36,7 @@ to pass again. The test file is located in the `tests` directory. You can
36
36
  also remove the ignore flag from all the tests to get them to run all at once
37
37
  if you wish.
38
38
 
39
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
39
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
40
40
  haven't already, it will help you with organizing your files.
41
41
 
42
42
  ## Feedback, Issues, Pull Requests
@@ -46,7 +46,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
46
46
  If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/docs/blob/master/contributing-to-language-tracks/README.md).
47
47
 
48
48
  [help-page]: http://exercism.io/languages/rust
49
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
49
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
50
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
50
51
 
51
52
  ## Source
52
53