mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
3 lines
76 B
Rust
3 lines
76 B
Rust
fn find_smallest_int(arr: &[i32]) -> i32 {
|
|
*arr.iter().min().unwrap()
|
|
}
|