freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-292-pythagorean-pol...

898 B
Raw Blame History

id title challengeType videoUrl dashedName
5900f4911000cf542c50ffa3 问题292勾股多边形 5 problem-292-pythagorean-polygons

--description--

我们将勾股定线多边形定义为具有以下特性的凸多边形:至少有三个顶点,

没有三个顶点对齐,

每个顶点都有整数坐标

每个边都有整数长度。对于给定的整数n将Pn定义为周长≤n的不同毕达哥拉斯多边形的数量。

毕达哥拉斯多边形应该被认为是不同的,只要它们都不是另一个的翻译即可。

给出P4= 1P30= 3655和P60= 891045。 找出P120

--hints--

euler292()应该返回3600060866。

assert.strictEqual(euler292(), 3600060866);

--seed--

--seed-contents--

function euler292() {

  return true;
}

euler292();

--solutions--

// solution required