Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Why is the bitshift operator throwing a parsing error?
for (int i = 0; i < 5; i++) int shift = 1 << i;
Same for XOR
int diff = last_key ^ key;
EDIT: silly me, XOR is equivalent to !=
!=