← Back to Challenges
Ownership & Borrowing (9)
Ownership rules, borrowing, and mutable references.
Core Rules (6)
Ownership
Understand and implement Rust's ownership model.
Ownership Rules
Identify and fix ownership rule violations in Rust code.
Mutable Variables
Define and modify mutable variables in Rust.
Mutable References
Implement Rust's ownership model with mutable references.
Mutable Struct References
Implement a struct that holds a mutable reference to a String and modifies its content.
Mutable Slices
Manipulate elements in a mutable slice in-place using iteration.