From e19663cec8abae36ff415988cb8a04b0814b4abe Mon Sep 17 00:00:00 2001 From: sota_masuda <sota.m777121@gmail.com> Date: Sat, 15 May 2021 12:19:13 +0900 Subject: [PATCH] solved ex.if --- exercises/if/if1.rs | 6 +++++- exercises/if/if2.rs | 5 +++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/exercises/if/if1.rs b/exercises/if/if1.rs index 9086754..7714e11 100644 --- a/exercises/if/if1.rs +++ b/exercises/if/if1.rs @@ -1,6 +1,5 @@ // if1.rs -// I AM NOT DONE pub fn bigger(a: i32, b: i32) -> i32 { // Complete this function to return the bigger number! @@ -8,6 +7,11 @@ pub fn bigger(a: i32, b: i32) -> i32 { // - another function call // - additional variables // Execute `rustlings hint if1` for hints + if a < b { + b + } else { + a + } } // Don't mind this for now :) diff --git a/exercises/if/if2.rs b/exercises/if/if2.rs index 80effbd..4d1ab2d 100644 --- a/exercises/if/if2.rs +++ b/exercises/if/if2.rs @@ -4,13 +4,14 @@ // 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" } }