25. Fill in the blank so that this function returns true if the circle at xl, yl with radius rl, has collided with the circle at
x2, y2, with radius r2.
boolean collided (int xl, int yl, int ri, int x2, int y2, int r2) {
return
A.
B.
dist(xl, yl, x2, y2) <= rl+r2
abs(x1-x2) >= rl+r2 && abs(yl-y2) <= rl+r2
A and B will both work
Neither A nor B work but one would be correct if the <= was >
Neither A nor B work but both would be correct if the <= was >=