1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-18 21:56:57 +02:00
CodeWars/8kyu/difference_of_volumes_of_cuboids/solution.rs

4 lines
124 B
Rust
Raw Permalink Normal View History

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