| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-08-10 | add .to_mut() in test owned_mutation() | Mate Kovacs | |
| 2023-08-07 | Fix from_into.rs tests | Alon Hearter | |
| 2023-07-28 | chore(errors4): improved comment | Marcus Höjvall | |
| 2023-07-21 | docs: dedup repeated sentence | Alexander González | |
| 2023-07-03 | added if3 based on: `Using if in a let Statement` | Joshua Carlson | |
| 2023-06-23 | refactor: Update comment to use correct construct name 'Result' instead of ↵ | Anish | |
| 'Option' Refactor the comment in the code to provide a more accurate description of the construct being used. Replace the mention of Option with Result. | |||
| 2023-06-12 | Merge branch 'main' into comment_cleanup | liv | |
| 2023-06-12 | Merge pull request #1546 from b-apperlo/b-apperlo-patch-1 | liv | |
| feat: added test function to hashmaps2.rs | |||
| 2023-06-12 | Merge pull request #1547 from b-apperlo/b-apperlo-patch-2 | liv | |
| fix: update hashmaps3.rs | |||
| 2023-06-12 | Merge pull request #1549 from IVIURRAY/enums3-message-test | liv | |
| fix(enums3): add test for message | |||
| 2023-06-12 | feat(move_semantics2): rewrite hint | liv | |
| 2023-06-08 | fix(enums3): add test for message | IVIURARY | |
| closes #1548 | |||
| 2023-06-08 | fix: updated comment for struct | Bert Apperlo | |
| 2023-06-08 | fix: update hashmaps3.rs | Bert Apperlo | |
| 2023-06-08 | feat: added test function to hashmaps2.rs | Bert Apperlo | |
| The existing test functions only check if a kind of fruit exists in the hashmap, but not if the amount of fruits is higher than zero. This new test function solves this. | |||
| 2023-05-29 | docs: cleanup the explanation paragraphs at the start of each exercise. | Robert Fry | |
| 2023-05-23 | fix(exercises): use snake_case variables | lazywalker | |
| 2023-05-17 | Merge pull request #1478 from Ben2917/improved_tests_for_iterators5 | liv | |
| fix: Added some extra tests to validate iterators5 solution | |||
| 2023-05-17 | chore: rustfmt | liv | |
| 2023-05-17 | Merge pull request #1487 from lionel-rowe/patch-1 | liv | |
| feat(options2): better test for layered_option | |||
| 2023-05-09 | fix(options3): panic when not matching to avoid false positives | Noah May | |
| Closes #1503 | |||
| 2023-05-01 | Merge branch 'main' into patch-2 | Aaron Wang | |
| 2023-04-27 | chore: clarified cow owned_no_mutation comments | PiqqiDesigns | |
| 2023-04-21 | feat(options2): better tests for layered_option | lionel-rowe | |
| The existing test can be solved with the following: ```rs while let Some(integer) = optional_integers.pop() { assert_eq!(integer.unwrap(), range); ``` Similarly with `expect(...)`, `unwrap_or(0)`, `unwrap_or_default()`, etc. However, none of these solutions use the learning point of stacking `Option<T>`s. The updated test can _only_ be solved by stacking `Option<T>`s: ```rs while let Some(Some(integer)) = optional_integers.pop() { assert_eq!(integer, cursor); ``` With the updated test, using `unwrap` or `expect` will panic when it hits the `None` value, and using `unwrap_or` or `unwrap_or_default` will cause the final `assert_eq!(cursor, 0)` to panic. | |||
| 2023-04-20 | fix(move_semantics2): fix line number comment | Alan Gerber | |
| Commit fef8314 added three lines of comments, which left the line numbers expected to stay unchanged mentioned on line 2 out of date. | |||
| 2023-04-15 | fix: Added some extra tests to validate iterators5 solution | Your Name | |
| closes: #1387 | |||
| 2023-04-10 | Update move_semantics2.rs | Aaron Wang | |
| 2023-04-07 | docs: update line numbers in move_semantics2 | Aaron Wang | |
| 2023-04-05 | Merge pull request #1384 from stornquist/patch-1 | liv | |
| fix(move_semantics2): add expected output comment | |||
| 2023-04-05 | Merge pull request #1391 from ktheory/ktheory/iter5 | liv | |
| docs: clarify instructions on iterators5.rs | |||
| 2023-04-05 | Merge pull request #1452 from guoard/markdown-linter | liv | |
| feat(docs): add markdown linter for exercises README.md files | |||
| 2023-04-05 | changed comments in tests | poneciak | |
| also fixed small logical issue in `Rectangle::new()` where u could create rectangle with width or height equals 0 | |||
| 2023-04-05 | added required changes | poneciak | |
| - fixed grammar in hint and added more specific link - added comments in test functions - changed introduction paragraph | |||
| 2023-04-05 | created task | poneciak | |
| 2023-03-31 | fix(exercises): remove trailing spaces | Alexandre ESSE | |
| 2023-03-30 | feat(docs): add markdown linter for exercises README.md files | Ali Afsharzadeh | |
| 2023-03-29 | docs(error_handling): resolve markdown linter warnings | Ali Afsharzadeh | |
| 2023-03-28 | Merge pull request #1445 from guoard/patch-1 | liv | |
| docs(variables): wrap mut keyword with backtick | |||
| 2023-03-28 | Merge pull request #1432 from ryanwhitehouse/main | liv | |
| docs:clarify instructions on hashmaps2.rs | |||
| 2023-03-28 | docs(variables): wrap mut keyword with backtick | Ali Afsharzadeh | |
| 2023-03-26 | Merge pull request #1428 from javihernant/changeLtReadme | liv | |
| change order of references in README.md | |||
| 2023-03-26 | reword hashmaps2 a bit more | liv | |
| 2023-03-26 | Merge pull request #1437 from navicore/errors2-comment-error | liv | |
| correct comments in errors2.rs | |||
| 2023-03-25 | feat(lifetimekata): Add info about Lifetimekata project | Tom Kunc | |
| 2023-03-24 | correct comments in errors2.rs | Ed Sweeney | |
| 2023-03-20 | docs:clarify instructions on hashmaps2.rs | Ryan Whitehouse | |
| 2023-03-16 | change order of references in README.md | hxztnxt | |
| 2023-03-10 | Rename iteration var names in vec2.rs for clarity | Adam Brewer | |
| Resolves #1417 | |||
| 2023-02-26 | Merge pull request #1396 from 0lhi/main | liv | |
| fix(macros4.rs): Add rustfmt::skip to prevent auto-fix. | |||
| 2023-02-24 | rustfmt | Chad Dougherty | |
| rustfmt converts "main ()" -> "main()" | |||
