I have a list of integers, that can have any number of items. Now, I want to calculate the BITWISE XOR of all these numbers. If the numbers are already known, this can be done as follows:
int xor = 10 ^ 25 ^ 40 ^ 55......and so on
But when number of elements is unknown, I am not able to achieve it dynamically at the runtime, for each element of the list. I want to apply bitwise XOR to all the times at once, not two at a time.
You can loop over the elements and apply the xor to a result variable, like this:
Due to the interchangable nature of xor, these two approaches have the same result:
See here: https://dotnetfiddle.net/zqSVad
The actual calculation happening here is exactly the same. You can expand this concept to a loop and have the desired effect.