mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-05 00:00:12 +00:00
802e6ac270
i.e. if-then-else *expression* in Rust
52 lines
546 B
Rust
52 lines
546 B
Rust
fn bigger(a: i32, b:i32) -> i32 {
|
|
// Complete this function to return the bigger number!
|
|
// Do not use:
|
|
// - return
|
|
// - another function call
|
|
// - additional variables
|
|
// Scroll down for hints.
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(10, bigger(10, 8));
|
|
assert_eq!(42, bigger(32, 42));
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// What is Rust's equivalent of the ternary operator?
|
|
// In C(++) this would be: a>b ? a : b
|
|
// In Python it would be: a if a>b else b
|
|
// If you still can't do it: Search online for rust ternary operator
|
|
|