PROJECT EULER · #0292
Pythagorean Polygons
We shall define a pythagorean polygon to be a convex polygon with the following properties:
- there are at least three vertices,
- no three vertices are aligned,
- each vertex has integer coordinates,
- each edge has integer length.
For a given integer
Pythagorean polygons should be considered distinct as long as none is a translation of another.
You are given that
Find
Write-up coming later
The complete problem is available here. An approach, code, and answer will be added later.