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

56 lines
846 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f44b1000cf542c50ff5d
challengeType: 5
videoUrl: ''
title: 问题222球体包装
---
## Description
<section id="description">什么是最短管道的长度内径为50毫米可以完全包含21个半径为30毫米31毫米......50毫米的球 <p>以微米10-6米四舍五入到最接近的整数给出答案。 </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler222()</code>应该返回1590933。
testString: assert.strictEqual(euler222(), 1590933);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler222() {
// Good luck!
return true;
}
euler222();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>