| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-04-24 | Merge branch 'main' | mo8it | |
| 2024-04-23 | Add README to the quizzes directory | mo8it | |
| 2024-04-22 | Move quizzes | mo8it | |
| 2024-04-17 | Clean up and unify exercises | mo8it | |
| 2024-04-17 | Require a main function in all exercises | mo8it | |
| 2024-04-14 | Tolerate changes in the state file | mo8it | |
| 2024-04-11 | Update intro1 | mo8it | |
| 2024-04-11 | Remove "I AM NOT DONE" and the verify mode and add AppState | mo8it | |
| 2024-04-08 | docs: add more info in threads | YunShu | |
| info.toml: ```toml [[exercises]] name = "threads3" path = "exercises/threads/threads3.rs" mode = "test" hint = """ An alternate way to handle concurrency between threads is to use a mpsc (multiple producer, single consumer) channel to communicate. With both a sending end and a receiving end, it's possible to send values in one thread and receive them in another. Multiple producers are possible by using clone() to create a duplicate of the original sending end. See https://doc.rust-lang.org/book/ch16-02-message-passing.html for more info. """ ``` threads3'hint contains this link, so it should be placed in Further Information | |||
| 2024-03-31 | Merge pull request #1929 from mo8it/threads2 | liv | |
| threads2: simplify the exercise | |||
| 2024-03-29 | Merge branch 'main' into main | Dan | |
| 2024-03-27 | threads2: simplify threads2 | mo8it | |
| 2024-03-27 | Merge pull request #1799 from NicolasRoelandt/patch-1 | Mo | |
| Remove confusing aside in 23_conversions/from_str.rs | |||
| 2024-03-28 | Merge remote-tracking branch 'origin/main' | wznmickey | |
| 2024-03-28 | chore: update the chapter of macros | wznmickey | |
| 2024-03-27 | Merge pull request #1805 from paul-leydier/chapters-table | Mo | |
| docs: sort exercise to book chapter mapping by exercise | |||
| 2024-03-18 | options1: Update wording & fix grammar | Dan Bond | |
| Signed-off-by: Dan Bond <danbond@protonmail.com> | |||
| 2024-03-18 | Merge pull request #1903 from mo8it/threads3 | liv | |
| Remove unneeded Arc | |||
| 2024-03-18 | Remove unneeded Arc | mo8it | |
| 2024-03-15 | Merge pull request #1866 from guizo792/guizo792 | liv | |
| docs: Added comment for handling equal numbers in if/if1.rs `bigger` function | |||
| 2024-03-15 | Update exercises/03_if/if1.rs | guizo792 | |
| Co-authored-by: liv <shadows@with.al> | |||
| 2024-03-15 | fix: clean up "return" wording in iterators4 | liv | |
| 2024-03-15 | Merge pull request #1797 from 0Ahmed-0/typos | liv | |
| chore: fix a minor typo | |||
| 2024-03-15 | Merge pull request #1785 from parnavh/main | liv | |
| Cleaned Up Unused Mutability | |||
| 2024-03-15 | Merge branch 'main' into main | liv | |
| 2024-03-15 | Merge pull request #1869 from evanmiller2112/main | liv | |
| Clarify language in hashmap3.rs (sum vs per match) | |||
| 2024-03-15 | Merge pull request #1832 from reifenrath-dev/main | liv | |
| chore: update from_into.rs task description to fit the code | |||
| 2024-03-15 | fix: revert from_into test change | liv | |
| 2024-03-13 | chore: fix a minor typo | Ahmed | |
| 2024-03-04 | Update hashmaps3.rs description for clarity | Evan Miller | |
| I struggled with this exercise and didn't understand that it was looking for a summary of goals scored/conceded per team, instead of per match. My goal here is just to clarify the language, essentially saying "the total number of goals the team scored" to indicate that we are looking for a sum. Updated the exercise description to clarify this point. Relates loosely to closed issue https://github.com/rust-lang/rustlings/issues/1361 | |||
| 2024-02-28 | docs: Added comment for handling equal numbers in if/if1.rs `bigger` function | Guizoul | |
| 2024-02-04 | chore: fixed minor typo | LeverImmy | |
| 2024-01-19 | chore: update from_into.rs task description to fit the code | reifenrath-dev | |
| 2024-01-09 | Correct for more standard English | Sergei Gerasenko | |
| 2023-12-18 | docs: sort exercise to book chapter mapping by exercise | Paul Leydier | |
| 2023-12-08 | Remove confusing aside in 23_conversions/from_str.rs | NicolasRoelandt | |
| The advice tell us how to return as String error message. Unless I missed something, we can't even return a String error message here, so this advice is more confusing than anything and should better be removed. | |||
| 2023-11-22 | fix(move_semantics): removed unused mut | parnavh | |
| 2023-11-12 | Reword clippy1 exercise to be more readable | Bastian Pedersen | |
| 2023-10-20 | fix(intro2): changed intro2 to be a name error, not a format string error. | Tristram Oaten | |
| 2023-10-16 | fix(intro1.rs): typo in the exercise body | markgreene74 | |
| 2023-10-16 | Update Exercises Directory Names to Reflect Order | Adam Brewer | |
| 2023-10-13 | chore(errors2): minor description wording change | Matt Nield | |
| This commit makes a minor change in the wording of the description of the errors2 exercise to avoid potential confusion, changing: "A player of the game will type in how many items they want to buy, and the `total_cost` function will calculate the total cost of the tokens." to "A player of the game will type in how many items they want to buy, and the `total_cost` function will calculate the total cost of the items." | |||
| 2023-09-21 | chore: fix comment in enums3.rs | Ofir Lauber | |
| 2023-09-18 | Merge pull request #1673 from husjon/fix-enums3-formatting | liv | |
| Fixed formatting of `enums3` with rustfmt | |||
| 2023-09-18 | Merge pull request #1675 from jurglic/fix-rand-typo | liv | |
| fix: test name typo | |||
| 2023-09-15 | remove hint comments when no hint exists | Luka Krmpotic | |
| 2023-09-14 | fix: test name typo | Jurglic | |
| 2023-09-13 | Fixed formatting with rust-analyzer | Jon Erling Hustadnes | |
| 2023-09-09 | Merge pull request #1667 from husjon/update-primitive_types3-requirement | liv | |
| Make `primitive_types3` require at least 100 elements | |||
| 2023-09-08 | Fix compiler error and clarify instructions | Oscar Bonilla | |
