Slug: err-design-03 · Paired reading: Chapters 2 and 8
Prompt
fn must_positive(n: i32) -> i32 panics on n <= 0 (programmer bug).
fn checked_positive(n: i32) -> Result<i32, &'static str> for recoverable input.
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 42
Slug: err-design-03 · Paired reading: Chapters 2 and 8
fn must_positive(n: i32) -> i32 panics on n <= 0 (programmer bug).
fn checked_positive(n: i32) -> Result<i32, &'static str> for recoverable input.