home
.
playground
.
bitwise-operators
Bitwise Operator: ^
Input = comma separated ints
XOR (^)
AND (&)
OR (|)
Input
Binary
3
0
1
1
5
1
0
1
3^5: (6)
1
1
0