freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-169-exploring-the-n...

56 lines
965 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: 5900f4151000cf542c50ff28
challengeType: 5
videoUrl: ''
title: 问题169探索数字可以表示为2的幂之和的不同方式的数量
---
## Description
<section id="description">将f0= 1和fn定义为不同方式的数量n可以表示为2的整数幂之和使用每个幂不超过两次。例如f10= 5因为有五种不同的表达方式101 + 1 + 8 1 + 1 + 4 + 41 + 1 + 2 + 2 + 4 2 + 4 + 4 2 + 8什么是f 1025 </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler169()</code>应该返回178653872807。
testString: assert.strictEqual(euler169(), 178653872807);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler169() {
// Good luck!
return true;
}
euler169();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>