Hacker News new | ask | show | jobs
by mcintyre1994 3412 days ago
a = a + b

b = a - b

a = a - b

I think this works too, assuming a+b doesn't overflow.

1 comments

Good one.

> I think this works too, assuming a+b doesn't overflow.

Well, in two's complement arithmetic (as is used on most architectures), the intermediate overflow can be ignored, and it will work just fine.