Slug: borrow-slice-01 · Paired reading: Chapters 6 and 15
Prompt
fn first_half(s: &[i32]) -> &[i32] — return &s[..mid] with mid =
len/2. Lifetime elides from the input slice.
The curriculum, drills, tutor, and interviewer mode are for readers of Ace the Rust Interview. The code is printed in the Preface (Companion site access).
Don’t have the book yet? The landing page stays open — purchase unlocks this gym.
beginner · order 47
Slug: borrow-slice-01 · Paired reading: Chapters 6 and 15
fn first_half(s: &[i32]) -> &[i32] — return &s[..mid] with mid =
len/2. Lifetime elides from the input slice.