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
@@ -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
 
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  pub fn raindrops(n: usize) -> String {
2
-
2
+ unimplemented!()
3
3
  }
@@ -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
 
50
51
  ## Submitting Incomplete Solutions
@@ -82,7 +82,7 @@ to pass again. The test file is located in the `tests` directory. You can
82
82
  also remove the ignore flag from all the tests to get them to run all at once
83
83
  if you wish.
84
84
 
85
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
85
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
86
86
  haven't already, it will help you with organizing your files.
87
87
 
88
88
  ## Feedback, Issues, Pull Requests
@@ -92,7 +92,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
92
92
  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).
93
93
 
94
94
  [help-page]: http://exercism.io/languages/rust
95
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
95
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
96
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
96
97
 
97
98
 
98
99
  ## Submitting Incomplete Solutions
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -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
 
@@ -42,7 +42,7 @@ to pass again. The test file is located in the `tests` directory. You can
42
42
  also remove the ignore flag from all the tests to get them to run all at once
43
43
  if you wish.
44
44
 
45
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
45
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
46
46
  haven't already, it will help you with organizing your files.
47
47
 
48
48
  ## Feedback, Issues, Pull Requests
@@ -52,7 +52,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
52
52
  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).
53
53
 
54
54
  [help-page]: http://exercism.io/languages/rust
55
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
55
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
56
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
56
57
 
57
58
  ## Source
58
59
 
@@ -102,7 +102,7 @@ to pass again. The test file is located in the `tests` directory. You can
102
102
  also remove the ignore flag from all the tests to get them to run all at once
103
103
  if you wish.
104
104
 
105
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
105
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
106
106
  haven't already, it will help you with organizing your files.
107
107
 
108
108
  ## Feedback, Issues, Pull Requests
@@ -112,7 +112,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
112
112
  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).
113
113
 
114
114
  [help-page]: http://exercism.io/languages/rust
115
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
115
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
116
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
116
117
 
117
118
  ## Source
118
119
 
@@ -56,7 +56,7 @@ to pass again. The test file is located in the `tests` directory. You can
56
56
  also remove the ignore flag from all the tests to get them to run all at once
57
57
  if you wish.
58
58
 
59
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
59
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
60
60
  haven't already, it will help you with organizing your files.
61
61
 
62
62
  ## Feedback, Issues, Pull Requests
@@ -66,7 +66,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
66
66
  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).
67
67
 
68
68
  [help-page]: http://exercism.io/languages/rust
69
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
69
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
70
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
70
71
 
71
72
  ## Source
72
73
 
@@ -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
 
@@ -44,7 +44,7 @@ to pass again. The test file is located in the `tests` directory. You can
44
44
  also remove the ignore flag from all the tests to get them to run all at once
45
45
  if you wish.
46
46
 
47
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
47
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
48
48
  haven't already, it will help you with organizing your files.
49
49
 
50
50
  ## Feedback, Issues, Pull Requests
@@ -54,7 +54,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
54
54
  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).
55
55
 
56
56
  [help-page]: http://exercism.io/languages/rust
57
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
57
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
58
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
58
59
 
59
60
  ## Source
60
61
 
@@ -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
 
52
53
  ## 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
 
@@ -1,3 +1,3 @@
1
1
  pub fn sum_of_multiples(limit: u32, factors: &[u32]) -> u32 {
2
-
2
+ unimplemented!()
3
3
  }
@@ -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
 
99
100
  ## Submitting Incomplete Solutions
@@ -4,8 +4,8 @@
4
4
 
5
5
  Implementation of this can take many forms. Here are some topics that may help you, depending on the approach you take.
6
6
 
7
- - [Enums](https://doc.rust-lang.org/book/enums.html)
8
- - [Traits](https://doc.rust-lang.org/book/traits.html)
7
+ - [Enums](https://doc.rust-lang.org/book/second-edition/ch06-00-enums.html)
8
+ - [Traits](https://doc.rust-lang.org/book/second-edition/ch10-02-traits.html)
9
9
  - [BTreeSet](https://doc.rust-lang.org/std/collections/btree_set/struct.BTreeSet.html)
10
10
 
11
11
  Or maybe you will come up with an approach that uses none of those!
@@ -25,8 +25,8 @@ a single line. Feel free to add your own code/tests to check for degenerate tria
25
25
 
26
26
  Implementation of this can take many forms. Here are some topics that may help you, depending on the approach you take.
27
27
 
28
- - [Enums](https://doc.rust-lang.org/book/enums.html)
29
- - [Traits](https://doc.rust-lang.org/book/traits.html)
28
+ - [Enums](https://doc.rust-lang.org/book/second-edition/ch06-00-enums.html)
29
+ - [Traits](https://doc.rust-lang.org/book/second-edition/ch10-02-traits.html)
30
30
  - [BTreeSet](https://doc.rust-lang.org/std/collections/btree_set/struct.BTreeSet.html)
31
31
 
32
32
  Or maybe you will come up with an approach that uses none of those!
@@ -51,7 +51,7 @@ to pass again. The test file is located in the `tests` directory. You can
51
51
  also remove the ignore flag from all the tests to get them to run all at once
52
52
  if you wish.
53
53
 
54
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
54
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
55
55
  haven't already, it will help you with organizing your files.
56
56
 
57
57
  ## Feedback, Issues, Pull Requests
@@ -61,7 +61,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
61
61
  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).
62
62
 
63
63
  [help-page]: http://exercism.io/languages/rust
64
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
64
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
65
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
65
66
 
66
67
  ## Source
67
68
 
@@ -51,7 +51,7 @@ to pass again. The test file is located in the `tests` directory. You can
51
51
  also remove the ignore flag from all the tests to get them to run all at once
52
52
  if you wish.
53
53
 
54
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
54
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
55
55
  haven't already, it will help you with organizing your files.
56
56
 
57
57
  ## Feedback, Issues, Pull Requests
@@ -61,7 +61,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
61
61
  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).
62
62
 
63
63
  [help-page]: http://exercism.io/languages/rust
64
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
64
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
65
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
65
66
 
66
67
  ## Source
67
68
 
@@ -31,7 +31,7 @@ to pass again. The test file is located in the `tests` directory. You can
31
31
  also remove the ignore flag from all the tests to get them to run all at once
32
32
  if you wish.
33
33
 
34
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
34
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
35
35
  haven't already, it will help you with organizing your files.
36
36
 
37
37
  ## Feedback, Issues, Pull Requests
@@ -41,7 +41,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
41
41
  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).
42
42
 
43
43
  [help-page]: http://exercism.io/languages/rust
44
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
44
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
45
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
45
46
 
46
47
  ## Source
47
48
 
@@ -75,7 +75,7 @@ to pass again. The test file is located in the `tests` directory. You can
75
75
  also remove the ignore flag from all the tests to get them to run all at once
76
76
  if you wish.
77
77
 
78
- Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
78
+ Make sure to read the [Modules](https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html) chapter if you
79
79
  haven't already, it will help you with organizing your files.
80
80
 
81
81
  ## Feedback, Issues, Pull Requests
@@ -85,7 +85,8 @@ The [exercism/rust](https://github.com/exercism/rust) repository on GitHub is th
85
85
  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).
86
86
 
87
87
  [help-page]: http://exercism.io/languages/rust
88
- [crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
88
+ [modules]: https://doc.rust-lang.org/book/second-edition/ch07-00-modules.html
89
+ [cargo]: https://doc.rust-lang.org/book/second-edition/ch14-00-more-about-cargo.html
89
90
 
90
91
  ## Source
91
92