docs: Added comment for handling equal numbers in if/if1.rs bigger function

This commit is contained in:
Guizoul 2024-02-28 14:19:05 +01:00
parent 8d0aa11a35
commit 1da82a0eab

View file

@ -6,6 +6,7 @@
pub fn bigger(a: i32, b: i32) -> i32 {
// Complete this function to return the bigger number!
// If both numbers are equal, any of them is returned.
// Do not use:
// - another function call
// - additional variables