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