freeCodeCamp/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-279-triangles-with-integral-sides-and-an-integral-angle.md
Oliver Eyton-Williams 0bd52f8bd1
Feat: add new Markdown parser (#39800)
and change all the challenges to new `md` format.
2020-11-27 10:02:05 -08:00

565 B

id, title, challengeType, forumTopicId
id title challengeType forumTopicId
5900f4841000cf542c50ff96 Problem 279: Triangles with integral sides and an integral angle 5 301929

--description--

How many triangles are there with integral sides, at least one integral angle (measured in degrees), and a perimeter that does not exceed 108?

--hints--

euler279() should return 416577688.

assert.strictEqual(euler279(), 416577688);

--seed--

--seed-contents--

function euler279() {

  return true;
}

euler279();

--solutions--

// solution required