I was looking at this answer and I was working through the code and I thought, "it would be great to improve the answer with my code." But then again, the answer already works. I would just change things like this:
if (x < 0) {
x *= -1;
}
to
x = ABS(x)
and rename some variables for clarity. But then I thought, should I make fixes if they are not 100% relevant to the central point of the question/answer? The author might get offended and in fact could argue that ABS is worse than multiplying, etc. etc.
Leave it alone, right, unless it's actually WRONG?
x *= -1;tox = -x;– Nick Dandoulakis Sep 30 '11 at 10:43