mrugesh 22afc2a0ca feat(learn): python certification projects (#38216)
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>
Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
2020-05-27 13:19:08 +05:30

912 B

id, challengeType, isHidden, title, forumTopicId
id challengeType isHidden title forumTopicId
5900f4e11000cf542c50fff3 5 false Problem 372: Pencils of rays 302034

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);

Challenge Seed

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

euler372();

Solution

// solution required