:crab: Small exercises to get you used to reading and writing Rust code!
19 matches across 1 category. Click a row to expand file-level details.
| Severity | File | Line | Snippet |
|---|---|---|---|
| LOW | solutions/19_smart_pointers/smart_pointers3.rs | 1 | // In this exercise, we are given a `Vec` of `u32` called `numbers` with values |
| LOW | solutions/19_smart_pointers/smart_pointers1.rs | 1 | // At compile time, Rust needs to know how much space a type takes up. This |
| LOW | solutions/18_iterators/iterators4.rs | 21 | // Case num==2: The iterator 2..=2 contains one element |
| LOW | solutions/quizzes/quiz2.rs | 1 | // Let's build a little machine in the form of a function. As input, we're going |
| LOW | solutions/quizzes/quiz3.rs | 1 | // An imaginary magical school has a new report card generation system written |
| LOW | solutions/13_error_handling/errors2.rs | 1 | // Say we're writing a game where you can buy items with tokens. All items cost |
| LOW | solutions/13_error_handling/errors5.rs | 1 | // This exercise is an altered version of the `errors4` exercise. It uses some |
| LOW | exercises/19_smart_pointers/smart_pointers3.rs | 1 | // In this exercise, we are given a `Vec` of `u32` called `numbers` with values |
| LOW | exercises/19_smart_pointers/smart_pointers1.rs | 1 | // At compile time, Rust needs to know how much space a type takes up. This |
| LOW | exercises/23_conversions/conversions3.rs | 21 | BadLen, |
| LOW | exercises/18_iterators/iterators4.rs | 1 | fn factorial(num: u64) -> u64 { |
| LOW | exercises/quizzes/quiz1.rs | 1 | // This is a quiz for the following sections: |
| LOW | exercises/quizzes/quiz2.rs | 1 | // This is a quiz for the following sections: |
| LOW | exercises/quizzes/quiz3.rs | 1 | // This quiz tests: |
| LOW | exercises/13_error_handling/errors2.rs | 1 | // Say we're writing a game where you can buy items with tokens. All items cost |
| LOW | exercises/13_error_handling/errors5.rs | 1 | // This exercise is an altered version of the `errors4` exercise. It uses some |
| LOW | src/cli.rs | 1 | use clap::{Parser, Subcommand}; |
| LOW | src/cli.rs | 21 | /// |
| LOW | src/dev/new.rs | 101 | # Optional multi-line message to be shown to users after finishing all exercises. |