Rating:
The area of the triangle created from 3 vertices in 3-space can be calculated using vectors. The area of a triangle with vertices at A, B, and C in 3-space can be calculated with the equation

where  is the vector from vertex A to B,  is the vector from A to C, and  is the norm of the cross product of vectors AB and AC. We perform this calculation for all 3 vertex combinations in the given coordinates, and return the largest area found. [triangle.py](https://gitlab.com/malcrypt/ctf-archive/-/blob/master/2021/tenable/code/triangle/triangle.py) implements this solution.