freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-99-largest-exponent...

56 lines
1.1 KiB
Markdown
Raw Normal View History

---
id: 5900f3d01000cf542c50fee2
challengeType: 5
videoUrl: ''
2020-10-01 15:54:21 +00:00
title: 问题99最大的指数
---
## Description
<section id="description">比较以索引形式如211和37编写的两个数字并不困难因为任何计算器都会确认211 = 2048 &lt;37 = 2187.但是确认632382518061&gt; 519432525806会更加困难因为这两个数字都包含超过三百万个数字。使用base_exp.txt右键单击并“将链接/目标另存为...”一个22K文本文件包含每行上带有基数/指数对的一千行,确定哪个行号具有最大数值。注意:文件中的前两行代表上面给出的示例中的数字。 </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler99()</code>应该返回709。
testString: assert.strictEqual(euler99(), 709);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler99() {
// Good luck!
return true;
}
euler99();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>