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