Files
freeCodeCamp/curriculum/challenges/japanese/10-coding-interview-prep/project-euler/problem-279-triangles-with-integral-sides-and-an-integral-angle.md
2022-01-23 00:08:20 +09:00

805 B

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f4841000cf542c50ff96 問題 279: 辺と角度が整数である三角形 5 301929 problem-279-triangles-with-integral-sides-and-an-integral-angle

--description--

3 辺の長さが整数であり、少なくとも 1 つの角度 (度単位で測定) が整数であり、かつ、周長が {10}^8 を超えない三角形はいくつありますか。

--hints--

trianglesWithIntegralSidesAndAngle()416577688 を返す必要があります。

assert.strictEqual(trianglesWithIntegralSidesAndAngle(), 416577688);

--seed--

--seed-contents--

function trianglesWithIntegralSidesAndAngle() {

  return true;
}

trianglesWithIntegralSidesAndAngle();

--solutions--

// solution required