rustlings/exercises
Michael Walsh d1ee2daf14 fix(structs3.rs): assigned value to cents_per_gram in test
Intended to simplify the lesson by removing the need to figure out what the value is meant to be based on the tests.

Previous commits (9ca08b8f2b and 114b54cbdb (diff-ce1c232ff0ddaff909351bb84cb5bff423b5b9e04f21fd4db7ffe443e598e174)) removed the mathematical complexity, and I feel this addition is a needed change to further streamline the exercise.
2021-10-30 16:55:58 -06:00
..
advanced_errors fix(traits1): rename test functions to snake case (#854) 2021-10-18 13:57:12 +02:00
clippy docs(exercises): updated all exercises readme files 2021-04-23 19:54:31 +02:00
collections docs: Update collections README with HashMap link 2021-07-06 01:31:27 -07:00
conversions Merge pull request #781 from tlyu/advanced-errs 2021-09-25 11:18:55 +02:00
enums docs(exercises): updated all exercises readme files 2021-04-23 19:54:31 +02:00
error_handling address review feedback 2021-06-09 23:27:53 -05:00
functions docs(exercises): updated all exercises readme files 2021-04-23 19:54:31 +02:00
generics fix: add hints to generics1 and generics2 exercises 2021-05-11 14:50:05 -05:00
if docs(exercises): updated all exercises readme files 2021-04-23 19:54:31 +02:00
macros docs(exercises): updated all exercises readme files 2021-04-23 19:54:31 +02:00
modules fix(modules2): fix typo (#835) 2021-09-06 16:32:39 +02:00
move_semantics fix(move_semantics5): correct typo (#857) 2021-09-30 10:18:36 +02:00
option feat: Add move_semantics5 exercise. (#746) 2021-05-17 14:10:40 +02:00
primitive_types docs(exercises): updated all exercises readme files 2021-04-23 19:54:31 +02:00
standard_library_types Merge pull request #732 from apogeeoak/iterators5 2021-07-09 12:24:42 +02:00
strings docs(exercises): updated all exercises readme files 2021-04-23 19:54:31 +02:00
structs fix(structs3.rs): assigned value to cents_per_gram in test 2021-10-30 16:55:58 -06:00
tests docs(exercises): updated all exercises readme files 2021-04-23 19:54:31 +02:00
threads docs(exercises): updated all exercises readme files 2021-04-23 19:54:31 +02:00
traits fix(traits1): rename test functions to snake case (#854) 2021-10-18 13:57:12 +02:00
variables fix(variables5): confine the answer further 2021-06-07 18:22:55 +08:00
README.md feat(modules): update exercises, add modules3 (#822) 2021-09-03 10:41:12 +02:00
quiz1.rs feat(quiz1): add default function name in comment (#838) 2021-09-21 10:43:44 +02:00
quiz2.rs fix(exercises): adding question mark to quiz2 2020-08-25 16:38:41 +02:00
quiz3.rs fix(quiz3): Force an answer to Q2 (#672) 2021-03-16 10:14:25 +01:00
quiz4.rs feat: renames test to quiz, fixes #244 2020-05-19 18:47:44 +02:00

README.md

Exercise to Book Chapter mapping

Exercise Book Chapter
variables §3.1
functions §3.3
if §3.5
move_semantics §4.1
primitive_types §4.3
structs §5.1
enums §6
modules §7
collections §8.1, §8.3
strings §8.2
error_handling §9
generics §10
option §10.1
traits §10.2
tests §11.1
standard_library_types §13.2
threads §16.1
macros §19.6
clippy n/a
conversions n/a