1
vote
Which compiles to faster code: “n * 3” or “n+(n*2)”?
It doesn't care. I think that there are more important things to optimize. How much time have you invested thinking and writing that question instead of coding and testing by yourself?
:-) …
0
votes
Determine if two rectangles overlap each other?
Asuming the points for all rectangles are always set in this order:
P1----P2
| |
P3----P4
then, the problem is just only to check if the point P1 of the secon …
