mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
5 lines
164 B
Rust
5 lines
164 B
Rust
impl Solution {
|
|
pub fn min_operations(nums: Vec<i32>, k: i32) -> i32 {
|
|
(k ^ nums.into_iter().reduce(|x, y| x ^ y).unwrap()).count_ones() as i32
|
|
}
|
|
}
|