Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-372-pencils-of-rays.md
Oliver Eyton-Williams dec409a4bd fix: s/localeTitle/title/g
2020-10-06 23:10:08 +05:30

745 B
Raw Blame History

id, challengeType, videoUrl, title
id challengeType videoUrl title
5900f4e11000cf542c50fff3 5 问题372光线笔

Description

令RMN为满足M的格点xy的数量

注意:代表楼层功能。

Instructions

Tests

tests:
  - text: <code>euler372()</code>应该返回301450082318807040。
    testString: assert.strictEqual(euler372(), 301450082318807040);

Challenge Seed

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

euler372();

Solution

// solution required

/section>