100-exercises-to-learn-rust icon indicating copy to clipboard operation
100-exercises-to-learn-rust copied to clipboard

A self-paced course to learn Rust, one exercise at a time.

Results 99 100-exercises-to-learn-rust issues
Sort by recently updated
recently updated
newest added

The syntax `[None; 7]` is used in the solution for [6.1. Arrays](https://rust-exercises.com/100-exercises/06_ticket_management/01_arrays) but it is not explained in the exercise.

The solution to [6.5. Iter](https://rust-exercises.com/100-exercises/06_ticket_management/05_iter) uses `std::slice::Iter` but a reference to it is only provided in the exercise that comes after it.

I want to write an minimal solution to reduce duplications. Everything is good except this part: ```rust impl for SaturatingU16 { fn from(value: &'a T) -> Self { Self {value:...

if you read threw the profile docs it provides 4 profiles. https://doc.rust-lang.org/cargo/reference/profiles.html

First of all thanks for the exercises, it's great resources are available online! I open this issue because I think some crucial explanation is missing when lifetimes are introduced, but...

### Issue: Type Mismatch in Test - Returning Option Instead of Ticket and Unwrap Usage. feel free to check my fork for this exercise: https://github.com/RioCasanova/100-exercises-to-learn-rust #### Description: The current implementation...

These examples are great, but when the student successfully completes the exercise there are still a bunch of warnings in the output. eg: ``` 02_match test pass! 2 warnings 1...

As a beginner rust dev, when I have the problem of getting some data to a function, I'm having issues deciding whether to use `clone()` and when to borrow. In...