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