1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-16 20:56:57 +02:00
CodeWars/8kyu/difference_of_volumes_of_cuboids/solution.rs
Matej Focko fc899b0b02
chore: initial commit
Signed-off-by: Matej Focko <mfocko@redhat.com>
2021-12-28 16:19:58 +01:00

3 lines
124 B
Rust

fn find_difference(a: &[i32; 3], b: &[i32; 3]) -> i32 {
(a.iter().product::<i32>() - b.iter().product::<i32>()).abs()
}