
You are given n points in the plane that are all distinct , where points[i] = [x _i , y _i ] . A boomerang is a tuple of points (i, j, k) such that the distance between i and j equals the distance between i and k (the order of the tuple matters) .
Return the number of boomerangs .
n == points.length1 <= n <= 500points[i].length == 2-10 ^4 <= x _i , y _i <= 10 ^4All the points are unique .