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

1.2 KiB
Raw Blame History

id challengeType title videoUrl localeTitle
5900f3d01000cf542c50fee2 5 Problem 99: Largest exponential 问题99最大的指数

Description

比较以索引形式如211和37编写的两个数字并不困难因为任何计算器都会确认211 = 2048 <37 = 2187.但是确认632382518061> 519432525806会更加困难因为这两个数字都包含超过三百万个数字。使用base_exp.txt右键单击并“将链接/目标另存为...”一个22K文本文件包含每行上带有基数/指数对的一千行,确定哪个行号具有最大数值。注意:文件中的前两行代表上面给出的示例中的数字。

Instructions

Tests

tests:
  - text: <code>euler99()</code>应该返回709。
    testString: 'assert.strictEqual(euler99(), 709, "<code>euler99()</code> should return 709.");'

Challenge Seed

function euler99() {
  // Good luck!
  return true;
}

euler99();

Solution

// solution required