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 3

Clone only when you mean it

own-move-03Related book chapters: 5 (optional — this page is complete on its own)ownershipclonemove

Slug: own-move-03 · Paired reading: Chapter 5

Prompt

Implement fn both_ends(s: &str) -> (String, String) returning owned copies of the first and last character as one-char Strings (empty input → two empty Strings). Prefer borrowing the input; clone/allocate only for the outputs.

Rust angle

Interviewers watch whether you clone out of panic or out of necessity.