812. Largest Triangle Area
Violent full traverse solution.
You have a list of points in the plane. Return the area of the largest triangle that can be formed by any 3 of the points.
| 1 | Example: | 

Notes:
- 3 <= points.length <= 50.
- No points will be duplicated.
- -50 <= points[i][j] <= 50.
- Answers within 10^-6of the true value will be accepted as correct.
Soulution:
| 1 | class Solution: |