impl Solution { pub fn min_operations(nums: Vec, k: i32) -> i32 { (k ^ nums.into_iter().reduce(|x, y| x ^ y).unwrap()).count_ones() as i32 } }