1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-19 22:16:57 +02:00
CodeWars/8kyu/find_the_smallest_integer_in_the_array/solution.rs

4 lines
76 B
Rust
Raw Normal View History

fn find_smallest_int(arr: &[i32]) -> i32 {
*arr.iter().min().unwrap()
}