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.
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
Slug: own-fn-07 · Paired reading: Chapter 5
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.