From e3a6bf17a2049dd9b5a78e2ba7544e10b53dc13c Mon Sep 17 00:00:00 2001 From: Phan Huy Hoang Date: Sun, 1 Jan 2023 00:29:02 +0700 Subject: [PATCH] [Work] exercises/if --- exercises/if/if1.rs | 7 +++++-- exercises/if/if2.rs | 6 +++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/exercises/if/if1.rs b/exercises/if/if1.rs index 587e03f8..06dcb3df 100644 --- a/exercises/if/if1.rs +++ b/exercises/if/if1.rs @@ -1,9 +1,12 @@ // if1.rs // Execute `rustlings hint if1` or use the `hint` watch subcommand for a hint. -// I AM NOT DONE - pub fn bigger(a: i32, b: i32) -> i32 { + if a > b { + a + } else { + b + } // Complete this function to return the bigger number! // Do not use: // - another function call diff --git a/exercises/if/if2.rs b/exercises/if/if2.rs index effddbb6..129a4a25 100644 --- a/exercises/if/if2.rs +++ b/exercises/if/if2.rs @@ -4,13 +4,13 @@ // Step 2: Get the bar_for_fuzz and default_to_baz tests passing! // Execute `rustlings hint if2` or use the `hint` watch subcommand for a hint. -// I AM NOT DONE - pub fn foo_if_fizz(fizzish: &str) -> &str { if fizzish == "fizz" { "foo" + } else if fizzish == "fuzz" { + "bar" } else { - 1 + "baz" } }