freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-354-distances-in-a-...

1.1 KiB
Raw Blame History

id challengeType videoUrl localeTitle
5900f4cf1000cf542c50ffe1 5 问题354蜜蜂蜂窝中的距离

Description

考虑一个蜜蜂的蜂窝每个细胞是一个完整的正六边形边长为1。

一只特定的细胞被蜂王占据。对于正实数L让BL计算距蜂王细胞距离为L的细胞所有距离从中心到中心测量;你可以假设蜂窝大到足以容纳我们想要考虑的任何距离。例如B√3= 6B√21= 12B111 111 111= 54。

求出L≤5·1011的数使得BL= 450。

Instructions

Tests

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

Challenge Seed

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

euler354();

Solution

// solution required

/section>