Given an array of points on the X-Y plane
pointswherepoints[i] = [xi, yi], return the area of the largest triangle that can be formed by any three different points. Answers within10-5of the actual answer will be accepted.
1 |
|
Given an array of points on the X-Y plane
pointswherepoints[i] = [xi, yi], return the area of the largest triangle that can be formed by any three different points. Answers within10-5of the actual answer will be accepted.
1 |
|