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

22 lines
739 B
Markdown
Raw Normal View History

---
id: 5900f3d01000cf542c50fee2
title: 问题99最大的指数
challengeType: 5
videoUrl: ''
---
# --description--
比较以索引形式如211和37编写的两个数字并不困难因为任何计算器都会确认211 = 2048 <37 = 2187.但是确认632382518061> 519432525806会更加困难因为这两个数字都包含超过三百万个数字。使用base_exp.txt右键单击并“将链接/目标另存为...”一个22K文本文件包含每行上带有基数/指数对的一千行,确定哪个行号具有最大数值。注意:文件中的前两行代表上面给出的示例中的数字。
# --hints--
`euler99()`应该返回709。
```js
assert.strictEqual(euler99(), 709);
```
# --solutions--