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

56 lines
1.1 KiB
Markdown
Raw Normal View History

---
id: 5900f4cf1000cf542c50ffe1
challengeType: 5
videoUrl: ''
2020-10-01 15:54:21 +00:00
title: 问题354蜜蜂蜂窝中的距离
---
## Description
<section id="description">考虑一个蜜蜂的蜂窝每个细胞是一个完整的正六边形边长为1。 <p>一只特定的细胞被蜂王占据。对于正实数L让BL计算距蜂王细胞距离为L的细胞所有距离从中心到中心测量;你可以假设蜂窝大到足以容纳我们想要考虑的任何距离。例如B√3= 6B√21= 12B111 111 111= 54。 </p><p>求出L≤5·1011的数使得BL= 450。 </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler354()</code>应该返回58065134。
testString: assert.strictEqual(euler354(), 58065134);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler354() {
// Good luck!
return true;
}
euler354();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>