mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-22 16:43:46 +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()
|
||
|
}
|