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

648 B

id, title, challengeType, forumTopicId
id title challengeType forumTopicId
5900f4801000cf542c50ff93 Problem 276: Primitive Triangles 5 301926

--description--

Consider the triangles with integer sides a, b and c with a ≤ b ≤ c.

An integer sided triangle (a,b,c) is called primitive if gcd(a,b,c)=1.

How many primitive integer sided triangles exist with a perimeter not exceeding 10 000 000?

--hints--

euler276() should return 5777137137739633000.

assert.strictEqual(euler276(), 5777137137739633000);

--seed--

--seed-contents--

function euler276() {

  return true;
}

euler276();

--solutions--

// solution required