Top "Xor" questions

For questions involving exclusive-or operations (typically bitwise).

EXCEL XOR multiple bits

Okay I have two cells with a string of bits 0111010 and 0101011. I want to XOR the two together so that …

excel xor
XOR on two lists in Python

I'm a beginner in Python, and I have to do the XOR between two lists (the first one with the …

python list python-2.7 xor
XOR of two short integers

I am calculating XOR of two short integers using XOR ^ operator in a traditional fashion. Below is the method- short …

java xor
Two elements in array whose xor is maximum

Given an array of integers ,You have to find two elements whose XOR is maximum. There is naive approach --just …

arrays algorithm bit-manipulation xor
XOR operation for two Boolean field

Given two Boolean, how to come up with the most elegant one liner that computes the XOR operation in C#? …

c# xor
XOR-ing strings in C#

I recently started playing around with C#, and I'm trying to understand why the following code doesn't compile. On the …

c# xor
What is XOR Encryption?

I have heard about people starting encryption and thought it may be something I would like, so I checked XOR …

encryption xor
Searching for a way to do Bitwise XOR on images

I am looking for a way to get the Bitwise XOR of two images on the command line(or in …

image image-processing imagemagick xor
XOR from only OR and AND

How do you do the XOR bitwise operation if you only have available the AND and the OR operations?

bitwise-operators xor bitwise-and
Using XOR operator for finding duplicate elements in a array fails in many cases

I came across a post How to find a duplicate element in an array of shuffled consecutive integers? but later …

c++ c duplicates xor