mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
3 lines
124 B
Rust
3 lines
124 B
Rust
fn find_difference(a: &[i32; 3], b: &[i32; 3]) -> i32 {
|
|
(a.iter().product::<i32>() - b.iter().product::<i32>()).abs()
|
|
}
|