| 266 | # return outliers |
| 267 | |
| 268 | class Circle: |
| 269 | def __init__(self, x, y, r): |
| 270 | self.x = x |
| 271 | self.y = y |
| 272 | self.r = r |
| 273 | |
| 274 | def circle_intersection(c1, c2): |
| 275 | d = math.sqrt((c1.x - c2.x)**2 + (c1.y - c2.y)**2) |
no outgoing calls
no test coverage detected