Complete if exercises ()

This commit is contained in:
Tyler Cardinal 2021-05-05 08:54:54 -05:00 committed by GitHub
parent c09acc09b5
commit 9d16451196
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 5 deletions
exercises/if

View file

@ -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

View file

@ -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"
}
}