Enter your book access code

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

Return a subslice with the right lifetime

borrow-slice-01Related book chapters: 6, 15 (optional — this page is complete on its own)sliceborrow

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.