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 25

Redesign to remove the clone

own-fn-07Related book chapters: 5 (optional — this page is complete on its own)ownershipredesign

Slug: own-fn-07 · Paired reading: Chapter 5

Prompt

Naive code clones a String to both print its length and return it. Write fn len_and_keep(s: String) -> (usize, String) with no .clone() — move in, measure, move out.