You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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.
3 years ago
..
advanced_errors fix(traits1): rename test functions to snake case (#854) 3 years ago
clippy docs(exercises): updated all exercises readme files 3 years ago
collections docs: Update collections README with HashMap link 3 years ago
conversions Merge pull request #781 from tlyu/advanced-errs 3 years ago
enums docs(exercises): updated all exercises readme files 3 years ago
error_handling address review feedback 3 years ago
functions docs(exercises): updated all exercises readme files 3 years ago
generics fix: add hints to generics1 and generics2 exercises 3 years ago
if docs(exercises): updated all exercises readme files 3 years ago
macros docs(exercises): updated all exercises readme files 3 years ago
modules fix(modules2): fix typo (#835) 3 years ago
move_semantics fix(move_semantics5): correct typo (#857) 3 years ago
option feat: Add move_semantics5 exercise. (#746) 3 years ago
primitive_types docs(exercises): updated all exercises readme files 3 years ago
standard_library_types Merge pull request #732 from apogeeoak/iterators5 3 years ago
strings docs(exercises): updated all exercises readme files 3 years ago
structs fix(structs3.rs): assigned value to cents_per_gram in test 3 years ago
tests docs(exercises): updated all exercises readme files 3 years ago
threads docs(exercises): updated all exercises readme files 3 years ago
traits fix(traits1): rename test functions to snake case (#854) 3 years ago
variables fix(variables5): confine the answer further 3 years ago
README.md feat(modules): update exercises, add modules3 (#822) 3 years ago
quiz1.rs feat(quiz1): add default function name in comment (#838) 3 years ago
quiz2.rs fix(exercises): adding question mark to quiz2 4 years ago
quiz3.rs fix(quiz3): Force an answer to Q2 (#672) 4 years ago
quiz4.rs feat: renames test to quiz, fixes #244 4 years ago

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