Slug: own-fn-03 · Paired reading: Chapter 5
Prompt
fn pair_and_keep(n: i32, s: String) -> (i32, i32, String) — return
(n, n, s). n can appear twice because i32: Copy; s moves once.
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 21
Slug: own-fn-03 · Paired reading: Chapter 5
fn pair_and_keep(n: i32, s: String) -> (i32, i32, String) — return
(n, n, s). n can appear twice because i32: Copy; s moves once.