Valeriy 79d9012432 fix(curriculum): quotes in tests (#18828)
* fix(curriculum): tests quotes

* fix(curriculum): fill seed-teardown

* fix(curriculum): fix tests and remove unneeded seed-teardown
2018-10-20 23:32:47 +05:30

935 B

id, challengeType, title
id challengeType title
5900f4e11000cf542c50fff3 5 Problem 372: Pencils of rays

Description

Let R(M, N) be the number of lattice points (x, y) which satisfy MNote: represents the floor function.

Instructions

Tests

tests:
  - text: <code>euler372()</code> should return 301450082318807040.
    testString: assert.strictEqual(euler372(), 301450082318807040, '<code>euler372()</code> should return 301450082318807040.');

Challenge Seed

function euler372() {
  // Good luck!
  return true;
}

euler372();

Solution

// solution required