From 9d1645119665224bd633410994f3c6fe65d97e03 Mon Sep 17 00:00:00 2001 From: Tyler Cardinal <83625450+tjcardinal@users.noreply.github.com> Date: Wed, 5 May 2021 08:54:54 -0500 Subject: [PATCH] Complete if exercises (#3) --- 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 9086754..2a1ef84 100644 --- a/exercises/if/if1.rs +++ b/exercises/if/if1.rs @@ -1,8 +1,11 @@ // if1.rs -// 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 80effbd..545083a 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 the command `rustlings hint if2` if you want a hint :) -// I AM NOT DONE - pub fn fizz_if_foo(fizzish: &str) -> &str { if fizzish == "fizz" { "foo" + } else if fizzish == "fuzz" { + "bar" } else { - 1 + "baz" } }