func swap(x, y, mask uint64) (uint64, uint64) { y ^= x x ^= y & mask y ^= x & mask return x, y }
To receive a hint, submit unfixed code.