From 719ffc0cc9881b55b9d1cb756cd079a44b4af956 Mon Sep 17 00:00:00 2001
From: Pinklady01 <katyanne_mm@live.fr>
Date: Tue, 13 Apr 2021 15:51:10 +0200
Subject: [PATCH] if

---
 exercises/if/if1.rs | 10 ++++------
 exercises/if/if2.rs |  9 ++++++---
 2 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/exercises/if/if1.rs b/exercises/if/if1.rs
index 9086754..f5c2de5 100644
--- a/exercises/if/if1.rs
+++ b/exercises/if/if1.rs
@@ -1,13 +1,11 @@
 // if1.rs
 
-// I AM NOT DONE
 
 pub fn bigger(a: i32, b: i32) -> i32 {
-    // Complete this function to return the bigger number!
-    // Do not use:
-    // - another function call
-    // - additional variables
-    // Execute `rustlings hint if1` for hints
+    if a > b{
+        return a;
+    }
+    return b;
 }
 
 // Don't mind this for now :)
diff --git a/exercises/if/if2.rs b/exercises/if/if2.rs
index 80effbd..e0bbc16 100644
--- a/exercises/if/if2.rs
+++ b/exercises/if/if2.rs
@@ -4,13 +4,16 @@
 // 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 {
-        1
+    }
+    else if fizzish == "fuzz" {
+        "bar"
+    }
+    else {
+        "baz"
     }
 }