2018-02-22 01:09:53 -05:00
|
|
|
// if1.rs
|
2023-05-29 13:39:08 -04:00
|
|
|
//
|
2022-07-12 05:10:08 -04:00
|
|
|
// Execute `rustlings hint if1` or use the `hint` watch subcommand for a hint.
|
2018-02-22 01:09:53 -05:00
|
|
|
|
2019-06-06 22:52:42 -04:00
|
|
|
pub fn bigger(a: i32, b: i32) -> i32 {
|
2015-11-17 17:59:18 -05:00
|
|
|
// Complete this function to return the bigger number!
|
2024-03-15 13:36:28 -04:00
|
|
|
// If both numbers are equal, any of them can be returned.
|
2015-11-17 17:59:18 -05:00
|
|
|
// Do not use:
|
|
|
|
// - another function call
|
|
|
|
// - additional variables
|
|
|
|
}
|
|
|
|
|
2019-01-23 14:48:01 -05:00
|
|
|
// Don't mind this for now :)
|
2016-06-14 11:07:36 -04:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ten_is_bigger_than_eight() {
|
|
|
|
assert_eq!(10, bigger(10, 8));
|
|
|
|
}
|
2015-11-17 17:59:18 -05:00
|
|
|
|
2016-06-14 11:07:36 -04:00
|
|
|
#[test]
|
|
|
|
fn fortytwo_is_bigger_than_thirtytwo() {
|
|
|
|
assert_eq!(42, bigger(32, 42));
|
|
|
|
}
|
2023-07-20 01:28:18 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn equal_numbers() {
|
|
|
|
assert_eq!(42, bigger(42, 42));
|
|
|
|
}
|
2016-06-14 11:07:36 -04:00
|
|
|
}
|